UNPKG

igniteui-react-core

Version:
62 lines (61 loc) 2.32 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 { DefinitionBaseDescription } from "./DefinitionBaseDescription"; import { markType } from "./type"; /** * @hidden */ var ColumnMovingSeparatorDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ColumnMovingSeparatorDescription, _super); function ColumnMovingSeparatorDescription() { var _this = _super.call(this) || this; _this.cs = 0; _this.co = 0; _this.cp = 0; return _this; } ColumnMovingSeparatorDescription.prototype.get_type = function () { return "ColumnMovingSeparator"; }; Object.defineProperty(ColumnMovingSeparatorDescription.prototype, "separatorWidth", { get: function () { return this.cs; }, set: function (a) { this.cs = a; this.g("SeparatorWidth"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnMovingSeparatorDescription.prototype, "actualOpacity", { get: function () { return this.co; }, set: function (a) { this.co = a; this.g("ActualOpacity"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnMovingSeparatorDescription.prototype, "opacity", { get: function () { return this.cp; }, set: function (a) { this.cp = a; this.g("Opacity"); }, enumerable: false, configurable: true }); ColumnMovingSeparatorDescription.$t = markType(ColumnMovingSeparatorDescription, 'ColumnMovingSeparatorDescription', DefinitionBaseDescription.$); return ColumnMovingSeparatorDescription; }(DefinitionBaseDescription)); export { ColumnMovingSeparatorDescription };