get_cell_by_index method
get_cell_by_index(self, 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):
...
| Parameter | Type | Description |
|---|---|---|
| index | int | The 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
- module
aspose.cells - class
Cell - class
Row