Aspose::Cells::Row::GetCellByIndex method

Row::GetCellByIndex method

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

Cell Aspose::Cells::Row::GetCellByIndex(int32_t index)
ParameterTypeDescription
indexint32_tThe index(position) of the cell in the cells collection of this row.

ReturnValue

The Cell object at given position.

Remarks

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

See Also