igniteui-react-core
Version:
Ignite UI React Core.
76 lines (75 loc) • 2.94 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 WebGridCreatedEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebGridCreatedEventArgsDetailDescription, _super);
function WebGridCreatedEventArgsDetailDescription() {
var _this = _super.call(this) || this;
_this.o = null;
_this.r = null;
_this.m = null;
_this.s = null;
return _this;
}
WebGridCreatedEventArgsDetailDescription.prototype.get_type = function () {
return "WebGridCreatedEventArgsDetail";
};
Object.defineProperty(WebGridCreatedEventArgsDetailDescription.prototype, "owner", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.g("Owner");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridCreatedEventArgsDetailDescription.prototype, "parentID", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.g("ParentID");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridCreatedEventArgsDetailDescription.prototype, "grid", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.g("Grid");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridCreatedEventArgsDetailDescription.prototype, "parentRowData", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.g("ParentRowData");
},
enumerable: false,
configurable: true
});
WebGridCreatedEventArgsDetailDescription.$t = markType(WebGridCreatedEventArgsDetailDescription, 'WebGridCreatedEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$);
WebGridCreatedEventArgsDetailDescription.__marshalByValue1 = true;
WebGridCreatedEventArgsDetailDescription.__marshalByValueAlias1 = "GridCreatedEventArgsDetail";
return WebGridCreatedEventArgsDetailDescription;
}(WebBaseEventArgsDetailDescription));
export { WebGridCreatedEventArgsDetailDescription };