UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

15 lines (14 loc) 476 B
import { EventArgs, Type } from "igniteui-webcomponents-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); }