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.61 kB
/** * Event arguments for the * activePaneChanged event. */ var IgxSpreadsheetActivePaneChangedEventArgs = /** @class */ /*@__PURE__*/ (function () { function IgxSpreadsheetActivePaneChangedEventArgs() { } Object.defineProperty(IgxSpreadsheetActivePaneChangedEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgxSpreadsheetActivePaneChangedEventArgs.prototype.onImplementationCreated = function () { }; IgxSpreadsheetActivePaneChangedEventArgs.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); }; Object.defineProperty(IgxSpreadsheetActivePaneChangedEventArgs.prototype, "newValue", { /** * Returns the new value of the * activePane */ get: function () { return this.i.newValue; }, enumerable: false, configurable: true }); Object.defineProperty(IgxSpreadsheetActivePaneChangedEventArgs.prototype, "oldValue", { /** * Returns the previous value of the * activePane */ get: function () { return this.i.oldValue; }, enumerable: false, configurable: true }); return IgxSpreadsheetActivePaneChangedEventArgs; }()); export { IgxSpreadsheetActivePaneChangedEventArgs };