igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
179 lines (178 loc) • 5.87 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var WebGridEditEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebGridEditEventArgsDetailDescription, _super);
function WebGridEditEventArgsDetailDescription() {
var _this = _super.call(this) || this;
_this.r = false;
_this.ab = null;
_this.z = null;
_this.ac = null;
_this.o = null;
_this.aa = null;
_this.y = null;
_this.x = null;
_this.k = null;
_this.m = null;
_this.s = false;
_this.t = false;
return _this;
}
WebGridEditEventArgsDetailDescription.prototype.get_type = function () {
return "WebGridEditEventArgsDetail";
};
Object.defineProperty(WebGridEditEventArgsDetailDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridEditEventArgsDetailDescription.prototype, "cancel", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("Cancel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridEditEventArgsDetailDescription.prototype, "rowID", {
get: function () {
return this.ab;
},
set: function (a) {
this.ab = a;
this.j("RowID");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridEditEventArgsDetailDescription.prototype, "primaryKey", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.j("PrimaryKey");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridEditEventArgsDetailDescription.prototype, "rowKey", {
get: function () {
return this.ac;
},
set: function (a) {
this.ac = a;
this.j("RowKey");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridEditEventArgsDetailDescription.prototype, "cellID", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("CellID");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridEditEventArgsDetailDescription.prototype, "rowData", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.j("RowData");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridEditEventArgsDetailDescription.prototype, "oldValue", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("OldValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridEditEventArgsDetailDescription.prototype, "newValue", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.j("NewValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridEditEventArgsDetailDescription.prototype, "column", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("Column");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridEditEventArgsDetailDescription.prototype, "owner", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("Owner");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridEditEventArgsDetailDescription.prototype, "isAddRow", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("IsAddRow");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridEditEventArgsDetailDescription.prototype, "valid", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("Valid");
},
enumerable: false,
configurable: true
});
WebGridEditEventArgsDetailDescription.$t = markType(WebGridEditEventArgsDetailDescription, 'WebGridEditEventArgsDetailDescription', Description.$);
WebGridEditEventArgsDetailDescription.__marshalByValue = true;
WebGridEditEventArgsDetailDescription.__marshalByValueAlias = "GridEditEventArgsDetail";
return WebGridEditEventArgsDetailDescription;
}(Description));
export { WebGridEditEventArgsDetailDescription };