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.
Input
This type is "input," meaning that code outside of the library defining it should not read from it. Future versions of this type may add optional members or make typing of members more general.
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 | number | TreeNodeFromImplicitAllowedTypes<TColumn> | Column, id, or column index at which the cell is located. |
| row | Alpha | readonly | string | 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>