igniteui-react-grids
Version:
Ignite UI React grid components.
15 lines (14 loc) • 409 B
TypeScript
/**
* The event is triggered when getting the current position of a certain cell
*/
export interface IgrCellPosition {
/**
* It returns the position (index) of the row, the cell is in
*/
rowIndex?: number;
/**
* It returns the position (index) of the column, the cell is in
* Counts only the visible (non hidden) columns
*/
visibleColumnIndex?: number;
}