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
Parameter | Constraint | Description |
---|---|---|
TColumn | ImplicitAllowedTypes | |
TRow | ImplicitAllowedTypes |
Properties
Property | Alerts | Modifiers | Type | Description |
---|---|---|---|---|
column | Alpha |
readonly |
string | TreeNodeFromImplicitAllowedTypes<TColumn> | Column or id at which the cell is located. |
row | Alpha |
readonly |
string | TreeNodeFromImplicitAllowedTypes<TRow> | Row or id at which the cell is located. |
Property Details
column
Column or id 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 | TreeNodeFromImplicitAllowedTypes<TColumn>;
Type: string | TreeNodeFromImplicitAllowedTypes<TColumn>
row
Row or id 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 | TreeNodeFromImplicitAllowedTypes<TRow>;
Type: string | TreeNodeFromImplicitAllowedTypes<TRow>