igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
71 lines (70 loc) • 2.84 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";
import { SpreadsheetCell } from "./SpreadsheetCell";
/**
* @hidden
*/
var SpreadsheetEditModeValidationErrorEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(SpreadsheetEditModeValidationErrorEventArgs, _super);
function SpreadsheetEditModeValidationErrorEventArgs(a, b, c) {
var _this = _super.call(this) || this;
_this._action = 0;
_this._canStayInEditMode = false;
_this._cell = new SpreadsheetCell();
_this._validationRule = null;
_this.action = 0;
_this.cell = a;
_this.validationRule = b;
_this.canStayInEditMode = !c;
return _this;
}
Object.defineProperty(SpreadsheetEditModeValidationErrorEventArgs.prototype, "action", {
get: function () {
return this._action;
},
set: function (a) {
this._action = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(SpreadsheetEditModeValidationErrorEventArgs.prototype, "canStayInEditMode", {
get: function () {
return this._canStayInEditMode;
},
set: function (a) {
this._canStayInEditMode = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(SpreadsheetEditModeValidationErrorEventArgs.prototype, "cell", {
get: function () {
return this._cell;
},
set: function (a) {
this._cell = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(SpreadsheetEditModeValidationErrorEventArgs.prototype, "validationRule", {
get: function () {
return this._validationRule;
},
set: function (a) {
this._validationRule = a;
},
enumerable: false,
configurable: true
});
SpreadsheetEditModeValidationErrorEventArgs.$t = markType(SpreadsheetEditModeValidationErrorEventArgs, 'SpreadsheetEditModeValidationErrorEventArgs', EventArgs.$);
return SpreadsheetEditModeValidationErrorEventArgs;
}(EventArgs));
export { SpreadsheetEditModeValidationErrorEventArgs };