GridCellRange
Defines a range of Cell - used in Grid Api Selection methods Typically use either PrimaryKey Values or Row Indexes
TypeScript
export interfaceProperties
| Property | Description |
|---|---|
| columnIds | Columns to select |
| primaryKeyValueEnd | Primary Key value of row at end of range |
| primaryKeyValueStart | Primary Key value of row at start of range |
| rowIndexEnd | Index of row at end of range |
| rowIndexStart | Index of row at start of range |
Property Details
columnIds
Columns to select
TypeScript
columnIds: string[];Property Value
string[]
primaryKeyValueEnd
Primary Key value of row at end of range
TypeScript
primaryKeyValueEnd?: any;Property Value
any
primaryKeyValueStart
Primary Key value of row at start of range
TypeScript
primaryKeyValueStart?: any;Property Value
any
rowIndexEnd
Index of row at end of range
TypeScript
rowIndexEnd?: any;Property Value
any
rowIndexStart
Index of row at start of range
TypeScript
rowIndexStart?: any;Property Value
any