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