get_cell_by_index method

get_cell_by_index

Get the cell by specific index in the cells collection of this row.

Returns

The Cell object at given position.

def get_cell_by_index(self, index):
    ...
ParameterTypeDescription
indexintThe index(position) of the cell in the cells collection of this row.

Remarks

To traverse all cells in sequence without modification, using Row.get_enumerator will give better performance than using this method to get cell one by one.

See Also