igniteui-react-grids
Version:
Ignite UI React grid components.
25 lines (24 loc) • 888 B
TypeScript
/**
* 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.
*/
export interface IgrGridSelectionRange {
/**
* The index of the starting row of the selection range.
*/
rowStart?: number | string;
/**
* The index of the ending row of the selection range.
*/
rowEnd?: number | string;
/**
* 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?: number | string;
/**
* 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?: number | string;
}