igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
53 lines (52 loc) • 2.17 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 { WorkbookDataObjectEventArgs } from "./WorkbookDataObjectEventArgs";
import { ArgumentNullException } from "igniteui-angular-core";
import { markType } from "igniteui-angular-core";
/**
* @hidden
*/
var WorkbookDataObjectPastingEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WorkbookDataObjectPastingEventArgs, _super);
function WorkbookDataObjectPastingEventArgs(a, b, c) {
var _this = _super.call(this, c) || this;
_this._f = null;
_this._d = null;
_this._f = a;
_this._d = b;
return _this;
}
Object.defineProperty(WorkbookDataObjectPastingEventArgs.prototype, "_dataObject", {
get: function () {
return this._f;
},
set: function (a) {
if (this._f != a) {
if (a == null) {
throw new ArgumentNullException(1);
}
this._f = a;
}
},
enumerable: false,
configurable: true
});
Object.defineProperty(WorkbookDataObjectPastingEventArgs.prototype, "_formatToApply", {
get: function () {
return this._d;
},
set: function (a) {
this._d = a;
},
enumerable: false,
configurable: true
});
WorkbookDataObjectPastingEventArgs.$t = markType(WorkbookDataObjectPastingEventArgs, 'WorkbookDataObjectPastingEventArgs', WorkbookDataObjectEventArgs.$);
return WorkbookDataObjectPastingEventArgs;
}(WorkbookDataObjectEventArgs));
export { WorkbookDataObjectPastingEventArgs };