UNPKG

igniteui-react-core

Version:
64 lines (63 loc) 2.66 kB
/* 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 WebColumnMovingEndEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebColumnMovingEndEventArgsDetailDescription, _super); function WebColumnMovingEndEventArgsDetailDescription() { var _this = _super.call(this) || this; _this.m = null; _this.n = null; _this.r = false; return _this; } WebColumnMovingEndEventArgsDetailDescription.prototype.get_type = function () { return "WebColumnMovingEndEventArgsDetail"; }; Object.defineProperty(WebColumnMovingEndEventArgsDetailDescription.prototype, "source", { get: function () { return this.m; }, set: function (a) { this.m = a; this.g("Source"); }, enumerable: false, configurable: true }); Object.defineProperty(WebColumnMovingEndEventArgsDetailDescription.prototype, "target", { get: function () { return this.n; }, set: function (a) { this.n = a; this.g("Target"); }, enumerable: false, configurable: true }); Object.defineProperty(WebColumnMovingEndEventArgsDetailDescription.prototype, "cancel", { get: function () { return this.r; }, set: function (a) { this.r = a; this.g("Cancel"); }, enumerable: false, configurable: true }); WebColumnMovingEndEventArgsDetailDescription.$t = markType(WebColumnMovingEndEventArgsDetailDescription, 'WebColumnMovingEndEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebColumnMovingEndEventArgsDetailDescription.__marshalByValue1 = true; WebColumnMovingEndEventArgsDetailDescription.__marshalByValueAlias1 = "ColumnMovingEndEventArgsDetail"; return WebColumnMovingEndEventArgsDetailDescription; }(WebBaseEventArgsDetailDescription)); export { WebColumnMovingEndEventArgsDetailDescription };