UNPKG

igniteui-angular-spreadsheet

Version:

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

50 lines (49 loc) 1.67 kB
/** * Event arguments for the * activeWorksheetChanged event. */ var IgxSpreadsheetActiveWorksheetChangedEventArgs = /** @class */ /*@__PURE__*/ (function () { function IgxSpreadsheetActiveWorksheetChangedEventArgs() { } Object.defineProperty(IgxSpreadsheetActiveWorksheetChangedEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgxSpreadsheetActiveWorksheetChangedEventArgs.prototype.onImplementationCreated = function () { }; IgxSpreadsheetActiveWorksheetChangedEventArgs.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); }; Object.defineProperty(IgxSpreadsheetActiveWorksheetChangedEventArgs.prototype, "newValue", { /** * Returns the new value of the * activeWorksheet */ get: function () { return this.i.newValue; }, enumerable: false, configurable: true }); Object.defineProperty(IgxSpreadsheetActiveWorksheetChangedEventArgs.prototype, "oldValue", { /** * Returns the previous value of the * activeWorksheet */ get: function () { return this.i.oldValue; }, enumerable: false, configurable: true }); return IgxSpreadsheetActiveWorksheetChangedEventArgs; }()); export { IgxSpreadsheetActiveWorksheetChangedEventArgs };