igniteui-react-core
Version:
Ignite UI React Core.
52 lines (51 loc) • 2.2 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 WebGridRowEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebGridRowEventArgsDetailDescription, _super);
function WebGridRowEventArgsDetailDescription() {
var _this = _super.call(this) || this;
_this.m = null;
_this.p = null;
return _this;
}
WebGridRowEventArgsDetailDescription.prototype.get_type = function () {
return "WebGridRowEventArgsDetail";
};
Object.defineProperty(WebGridRowEventArgsDetailDescription.prototype, "row", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.g("Row");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebGridRowEventArgsDetailDescription.prototype, "event", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.g("Event");
},
enumerable: false,
configurable: true
});
WebGridRowEventArgsDetailDescription.$t = markType(WebGridRowEventArgsDetailDescription, 'WebGridRowEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$);
WebGridRowEventArgsDetailDescription.__marshalByValue1 = true;
WebGridRowEventArgsDetailDescription.__marshalByValueAlias1 = "GridRowEventArgsDetail";
return WebGridRowEventArgsDetailDescription;
}(WebBaseEventArgsDetailDescription));
export { WebGridRowEventArgsDetailDescription };