igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
52 lines (51 loc) • 2.27 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 { WebBaseEventArgsDetailDescription } from "./WebBaseEventArgsDetailDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebGridCellEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebGridCellEventArgsDetailDescription, _super);
function WebGridCellEventArgsDetailDescription() {
var _this = _super.call(this) || this;
_this.m = null;
_this.p = null;
return _this;
}
WebGridCellEventArgsDetailDescription.prototype.get_type = function () {
return "WebGridCellEventArgsDetail";
};
Object.defineProperty(WebGridCellEventArgsDetailDescription.prototype, "cell", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.g("Cell");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridCellEventArgsDetailDescription.prototype, "event", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.g("Event");
},
enumerable: false,
configurable: true
});
WebGridCellEventArgsDetailDescription.$t = markType(WebGridCellEventArgsDetailDescription, 'WebGridCellEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$);
WebGridCellEventArgsDetailDescription.__marshalByValue1 = true;
WebGridCellEventArgsDetailDescription.__marshalByValueAlias1 = "GridCellEventArgsDetail";
return WebGridCellEventArgsDetailDescription;
}(WebBaseEventArgsDetailDescription));
export { WebGridCellEventArgsDetailDescription };