igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
46 lines (45 loc) • 1.92 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { EventArgs, markType } from "igniteui-angular-core";
/**
* @hidden
*/
var WorkbookSerializationErrorEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WorkbookSerializationErrorEventArgs, _super);
function WorkbookSerializationErrorEventArgs(a, b) {
var _this = _super.call(this) || this;
_this._exception_1 = null;
_this._isLoading_1 = false;
_this._isLoading = a;
_this._exception = b;
return _this;
}
Object.defineProperty(WorkbookSerializationErrorEventArgs.prototype, "_exception", {
get: function () {
return this._exception_1;
},
set: function (a) {
this._exception_1 = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(WorkbookSerializationErrorEventArgs.prototype, "_isLoading", {
get: function () {
return this._isLoading_1;
},
set: function (a) {
this._isLoading_1 = a;
},
enumerable: false,
configurable: true
});
WorkbookSerializationErrorEventArgs.$t = markType(WorkbookSerializationErrorEventArgs, 'WorkbookSerializationErrorEventArgs', EventArgs.$);
return WorkbookSerializationErrorEventArgs;
}(EventArgs));
export { WorkbookSerializationErrorEventArgs };