GridSelectionRange
Represents a range selection between certain rows and columns of the grid. Range selection can be made either through drag selection or through keyboard selection.
Properties
Section titled "Properties"columnEnd
Section titled "columnEnd"The identifier or index of the ending column of the selection range. It can be either a string representing the column's field name or a numeric index.
columnEnd: string | number Defined in projects/igniteui-angular/grids/core/src/common/types.ts:26
columnStart
Section titled "columnStart"The identifier or index of the starting column of the selection range. It can be either a string representing the column's field name or a numeric index.
columnStart: string | number Defined in projects/igniteui-angular/grids/core/src/common/types.ts:20
rowEnd
Section titled "rowEnd"The index of the ending row of the selection range.
rowEnd: number Defined in projects/igniteui-angular/grids/core/src/common/types.ts:14
rowStart
Section titled "rowStart"The index of the starting row of the selection range.
rowStart: number Defined in projects/igniteui-angular/grids/core/src/common/types.ts:12