UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

27 lines (26 loc) 929 B
import { IgcGridCellPosition } from "./igc-grid-cell-position"; import { GridActiveCellChangedEventArgs as GridActiveCellChangedEventArgs_internal } from "./GridActiveCellChangedEventArgs"; /** * Information about the change to the selected cells in the grid. */ export declare class IgcGridActiveCellChangedEventArgs { protected createImplementation(): GridActiveCellChangedEventArgs_internal; protected _implementation: any; /** * @hidden */ get i(): GridActiveCellChangedEventArgs_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; /** * The new active cell. */ get newActiveCell(): IgcGridCellPosition; set newActiveCell(v: IgcGridCellPosition); /** * The old active cell. */ get oldActiveCell(): IgcGridCellPosition; set oldActiveCell(v: IgcGridCellPosition); }