UNPKG

igniteui-angular-spreadsheet

Version:

Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.

27 lines (26 loc) 807 B
import { SpreadsheetActiveCellChangedEventArgs as SpreadsheetActiveCellChangedEventArgs_internal } from "./SpreadsheetActiveCellChangedEventArgs"; import { SpreadsheetCell } from "./SpreadsheetCell"; /** * Event arguments for the * activeCellChanged event. */ export declare class IgxSpreadsheetActiveCellChangedEventArgs { protected _implementation: any; /** * @hidden */ get i(): SpreadsheetActiveCellChangedEventArgs_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; /** * Returns the new value of the * activeCell */ get newValue(): SpreadsheetCell; /** * Returns the previous value of the * activeCell */ get oldValue(): SpreadsheetCell; }