Class: Column

new H.service.extension.customLocation.Table.Column (table, columnName) Deprecated : since 3.1.63.0

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

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.

setCell (rowIndex, value) Deprecated : since 3.1.63.0

To set the value of the cell at the specified row.

GEOMETRY_ID cell of an existing row should not be modified to not cause data inconsistency.

Name Type Description
rowIndex number

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.

Type
H.lang.InvalidArgumentError
Example
// Set value of the current column for the first row
column.setCell(0, "HERE Technologies");