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) 834 B
import { SpreadsheetActiveWorksheetChangedEventArgs as SpreadsheetActiveWorksheetChangedEventArgs_internal } from "./SpreadsheetActiveWorksheetChangedEventArgs"; import { Worksheet } from "igniteui-angular-excel"; /** * Event arguments for the * activeWorksheetChanged event. */ export declare class IgxSpreadsheetActiveWorksheetChangedEventArgs { protected _implementation: any; /** * @hidden */ get i(): SpreadsheetActiveWorksheetChangedEventArgs_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; /** * Returns the new value of the * activeWorksheet */ get newValue(): Worksheet; /** * Returns the previous value of the * activeWorksheet */ get oldValue(): Worksheet; }