Interface: IColumn

An interface to provide access to a table's column. It uses the generic type C as the type for all cell values.

Methods

getCell (rowIndex)C | undefined Deprecated : since 3.1.63.0

To get the cell value at the given row index

Name Type Description
rowIndex number

The zero-based index of the cell's row

Returns:
Type Description
C | undefined The specified cell or undefined if the row index is out of range.