UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

15 lines (14 loc) 468 B
import { EventArgs, Type } from "igniteui-react-core"; import { GridCellPosition } from "./GridCellPosition"; /** * @hidden */ export declare class GridActiveCellChangedEventArgs extends EventArgs { static $t: Type; private _newActiveCell; get newActiveCell(): GridCellPosition; set newActiveCell(a: GridCellPosition); private _oldActiveCell; get oldActiveCell(): GridCellPosition; set oldActiveCell(a: GridCellPosition); }