UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

148 lines (147 loc) 5.14 kB
/* 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 { WebBaseEventArgsDetailDescription } from "./WebBaseEventArgsDetailDescription"; import { markType } from "./type"; /** * @hidden */ var WebGridEditDoneEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebGridEditDoneEventArgsDetailDescription, _super); function WebGridEditDoneEventArgsDetailDescription() { var _this = _super.call(this) || this; _this.ac = null; _this.aa = null; _this.ad = null; _this.r = null; _this.ab = null; _this.z = null; _this.y = null; _this.p = null; _this.u = false; _this.v = false; return _this; } WebGridEditDoneEventArgsDetailDescription.prototype.get_type = function () { return "WebGridEditDoneEventArgsDetail"; }; Object.defineProperty(WebGridEditDoneEventArgsDetailDescription.prototype, "rowID", { get: function () { return this.ac; }, set: function (a) { this.ac = a; this.j("RowID"); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridEditDoneEventArgsDetailDescription.prototype, "primaryKey", { get: function () { return this.aa; }, set: function (a) { this.aa = a; this.j("PrimaryKey"); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridEditDoneEventArgsDetailDescription.prototype, "rowKey", { get: function () { return this.ad; }, set: function (a) { this.ad = a; this.j("RowKey"); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridEditDoneEventArgsDetailDescription.prototype, "cellID", { get: function () { return this.r; }, set: function (a) { this.r = a; this.j("CellID"); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridEditDoneEventArgsDetailDescription.prototype, "rowData", { get: function () { return this.ab; }, set: function (a) { this.ab = a; this.j("RowData"); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridEditDoneEventArgsDetailDescription.prototype, "oldValue", { get: function () { return this.z; }, set: function (a) { this.z = a; this.j("OldValue"); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridEditDoneEventArgsDetailDescription.prototype, "newValue", { get: function () { return this.y; }, set: function (a) { this.y = a; this.j("NewValue"); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridEditDoneEventArgsDetailDescription.prototype, "column", { get: function () { return this.p; }, set: function (a) { this.p = a; this.j("Column"); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridEditDoneEventArgsDetailDescription.prototype, "isAddRow", { get: function () { return this.u; }, set: function (a) { this.u = a; this.j("IsAddRow"); }, enumerable: false, configurable: true }); Object.defineProperty(WebGridEditDoneEventArgsDetailDescription.prototype, "valid", { get: function () { return this.v; }, set: function (a) { this.v = a; this.j("Valid"); }, enumerable: false, configurable: true }); WebGridEditDoneEventArgsDetailDescription.$t = markType(WebGridEditDoneEventArgsDetailDescription, 'WebGridEditDoneEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebGridEditDoneEventArgsDetailDescription.__marshalByValue1 = true; WebGridEditDoneEventArgsDetailDescription.__marshalByValueAlias1 = "GridEditDoneEventArgsDetail"; return WebGridEditDoneEventArgsDetailDescription; }(WebBaseEventArgsDetailDescription)); export { WebGridEditDoneEventArgsDetailDescription };