An interface to provide access to a table's row. It uses two generic types:
C: The type for all cell valuesM: The type for the table's meta information
Methods
-
To get the cell value at the specified column
Name Type Description columnNamestring The name of the column
Returns:
Type Description C | undefined The specified cell or undefinedif a column with the the given name doesn't exist. -
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>