UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

27 lines (26 loc) 576 B
/** * Defines a range of Cell - used in Grid Api Selection methods * Typically use either PrimaryKey Values or Row Indexes */ export interface GridCellRange { /** * Columns to select */ columnIds: string[]; /** * Primary Key value of row at start of range */ primaryKeyValueStart?: any; /** * Primary Key value of row at end of range */ primaryKeyValueEnd?: any; /** * Index of row at start of range */ rowIndexStart?: any; /** * Index of row at end of range */ rowIndexEnd?: any; }