UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

64 lines (63 loc) 2.69 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.k = null; _this.p = null; _this.o = null; return _this; } WebColumnResizeEventArgsDetailDescription.prototype.get_type = function () { return "WebColumnResizeEventArgsDetail"; }; Object.defineProperty(WebColumnResizeEventArgsDetailDescription.prototype, "column", { get: function () { return this.k; }, set: function (a) { this.k = a; this.e("Column"); }, enumerable: false, configurable: true }); Object.defineProperty(WebColumnResizeEventArgsDetailDescription.prototype, "prevWidth", { get: function () { return this.p; }, set: function (a) { this.p = a; this.e("PrevWidth"); }, enumerable: false, configurable: true }); Object.defineProperty(WebColumnResizeEventArgsDetailDescription.prototype, "newWidth", { get: function () { return this.o; }, set: function (a) { this.o = a; this.e("NewWidth"); }, enumerable: false, configurable: true }); WebColumnResizeEventArgsDetailDescription.$t = markType(WebColumnResizeEventArgsDetailDescription, 'WebColumnResizeEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebColumnResizeEventArgsDetailDescription.__marshalByValue1 = true; WebColumnResizeEventArgsDetailDescription.__marshalByValueAlias1 = "ColumnResizeEventArgsDetail"; return WebColumnResizeEventArgsDetailDescription; }(WebBaseEventArgsDetailDescription)); export { WebColumnResizeEventArgsDetailDescription };