UNPKG

igniteui-react-core

Version:
64 lines (63 loc) 2.63 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 WebColumnResizeEventArgsDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebColumnResizeEventArgsDetailDescription, _super); function WebColumnResizeEventArgsDetailDescription() { var _this = _super.call(this) || this; _this.m = null; _this.r = null; _this.q = null; return _this; } WebColumnResizeEventArgsDetailDescription.prototype.get_type = function () { return "WebColumnResizeEventArgsDetail"; }; Object.defineProperty(WebColumnResizeEventArgsDetailDescription.prototype, "column", { get: function () { return this.m; }, set: function (a) { this.m = a; this.g("Column"); }, enumerable: false, configurable: true }); Object.defineProperty(WebColumnResizeEventArgsDetailDescription.prototype, "prevWidth", { get: function () { return this.r; }, set: function (a) { this.r = a; this.g("PrevWidth"); }, enumerable: false, configurable: true }); Object.defineProperty(WebColumnResizeEventArgsDetailDescription.prototype, "newWidth", { get: function () { return this.q; }, set: function (a) { this.q = a; this.g("NewWidth"); }, enumerable: false, configurable: true }); WebColumnResizeEventArgsDetailDescription.$t = markType(WebColumnResizeEventArgsDetailDescription, 'WebColumnResizeEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebColumnResizeEventArgsDetailDescription.__marshalByValue1 = true; WebColumnResizeEventArgsDetailDescription.__marshalByValueAlias1 = "ColumnResizeEventArgsDetail"; return WebColumnResizeEventArgsDetailDescription; }(WebBaseEventArgsDetailDescription)); export { WebColumnResizeEventArgsDetailDescription };