SelectedCellInfo

Describes which Cells are currently selected in AdapTable

TypeScript
export interface

Properties

PropertyTypeDescription
columnsAdaptableColumn<TData>[]Array of Columns which have selected cells
gridCellsGridCell<TData>[]Array of GridCells (which provide cell value, primary kev value and other info)

Property Details

columns

Array of Columns which have selected cells

TypeScript
columns: AdaptableColumn<TData>[];
Property Value

AdaptableColumn<TData>[]

gridCells

Array of GridCells (which provide cell value, primary kev value and other info)

TypeScript
gridCells: GridCell<TData>[];
Property Value

GridCell<TData>[]