This class represents values of a specific attribute within a data layer as a table column.
It implements the H.service.extension.dataView.IColumn.<*> interface.
| Name | Type | Description |
|---|---|---|
table |
H.service.extension.customLocation.Table |
The containing table of this column. |
columnName |
string |
The name of this column. |
Implements
Methods
-
To get the cell value at the given row index
Name Type Description rowIndexnumber The zero-based index of the cell's row
Returns:
Type Description C | undefined The specified cell or undefinedif the row index is out of range. -
To set the value of the cell at the specified row.
GEOMETRY_IDcell of an existing row should not be modified to not cause data inconsistency.Name Type Description rowIndexnumber The index of the cell's row
value* The cell's value to set
Throws:
-
if a row with the given index doesn't exist.
Example
// Set value of the current column for the first row column.setCell(0, "HERE Technologies"); -