Interface: IRow

An interface to provide access to a table's row. It uses two generic types:

  • C: The type for all cell values
  • M: The type for the table's meta information

Methods

getCell (columnName)C | undefined Deprecated : since 3.1.63.0

To get the cell value at the specified column

Name Type Description
columnName string

The name of the column

Returns:
Type Description
C | undefined The specified cell or undefined if a column with the the given name doesn't exist.

getColumnNames ()Array.<string> Deprecated : since 3.1.63.0

To get a ordered list of all column names.

Returns:
Type Description
Array.<string> the list of the column names.

getTable ()H.service.extension.dataView.ITable.<C, M> Deprecated : since 3.1.63.0

To get the reference to the table this row belongs to

Returns:
Type Description
H.service.extension.dataView.ITable.<C, M>