igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
105 lines (104 loc) • 3.7 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 GridCellValueChangingEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GridCellValueChangingEventArgsDescription, _super);
function GridCellValueChangingEventArgsDescription() {
var _this = _super.call(this) || this;
_this.m = 0;
_this.k = null;
_this.u = null;
_this.o = null;
_this.q = null;
_this.p = null;
return _this;
}
GridCellValueChangingEventArgsDescription.prototype.get_type = function () {
return "GridCellValueChangingEventArgs";
};
Object.defineProperty(GridCellValueChangingEventArgsDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridCellValueChangingEventArgsDescription.prototype, "editID", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("EditID");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridCellValueChangingEventArgsDescription.prototype, "cellInfo", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("CellInfo");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridCellValueChangingEventArgsDescription.prototype, "columnRef", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("ColumnRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridCellValueChangingEventArgsDescription.prototype, "item", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("Item");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridCellValueChangingEventArgsDescription.prototype, "oldValue", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("OldValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridCellValueChangingEventArgsDescription.prototype, "newValue", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("NewValue");
},
enumerable: false,
configurable: true
});
GridCellValueChangingEventArgsDescription.$t = markType(GridCellValueChangingEventArgsDescription, 'GridCellValueChangingEventArgsDescription', Description.$);
return GridCellValueChangingEventArgsDescription;
}(Description));
export { GridCellValueChangingEventArgsDescription };