Skip to main content

CellKey Interface

A key to uniquely identify a cell within a table.

This API is provided as an alpha preview and may change without notice.

For more information about our API support guarantees, see here.

Signature

interface CellKey<TColumn extends ImplicitAllowedTypes, TRow extends ImplicitAllowedTypes>

Type Parameters

ParameterConstraintDescription
TColumnImplicitAllowedTypes
TRowImplicitAllowedTypes

Properties

PropertyAlertsModifiersTypeDescription
columnAlphareadonlystring | number | TreeNodeFromImplicitAllowedTypes<TColumn>Column, id, or column index at which the cell is located.
rowAlphareadonlystring | number | TreeNodeFromImplicitAllowedTypes<TRow>Row, id, or row index at which the cell is located.

Property Details

column

Column, id, or column index at which the cell is located.

This API is provided as an alpha preview and may change without notice.

For more information about our API support guarantees, see here.

Signature

readonly column: string | number | TreeNodeFromImplicitAllowedTypes<TColumn>;

Type: string | number | TreeNodeFromImplicitAllowedTypes<TColumn>

row

Row, id, or row index at which the cell is located.

This API is provided as an alpha preview and may change without notice.

For more information about our API support guarantees, see here.

Signature

readonly row: string | number | TreeNodeFromImplicitAllowedTypes<TRow>;

Type: string | number | TreeNodeFromImplicitAllowedTypes<TRow>