UNPKG

igniteui-react-core

Version:
232 lines (231 loc) 7.53 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 { ToolActionInfoDescription } from "./ToolActionInfoDescription"; import { markType } from "./type"; /** * @hidden */ var ToolActionButtonPairInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolActionButtonPairInfoDescription, _super); function ToolActionButtonPairInfoDescription() { var _this = _super.call(this) || this; _this.b3 = null; _this.b0 = null; _this.b2 = null; _this.b1 = null; _this.bh = false; _this.bk = 0; _this.bl = 0; _this.bm = 0; _this.bj = 0; _this.b7 = null; _this.b4 = null; _this.b6 = null; _this.b5 = null; _this.bo = 0; _this.bp = 0; _this.bq = 0; _this.bn = 0; return _this; } ToolActionButtonPairInfoDescription.prototype.get_type = function () { return "ToolActionButtonPairInfo"; }; Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "leftTitle", { get: function () { return this.b3; }, set: function (a) { this.b3 = a; this.g("LeftTitle"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "leftCommandArgument", { get: function () { return this.b0; }, set: function (a) { this.b0 = a; this.g("LeftCommandArgument"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "leftIconName", { get: function () { return this.b2; }, set: function (a) { this.b2 = a; this.g("LeftIconName"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "leftIconCollectionName", { get: function () { return this.b1; }, set: function (a) { this.b1 = a; this.g("LeftIconCollectionName"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "isToggleDisabled", { get: function () { return this.bh; }, set: function (a) { this.bh = a; this.g("IsToggleDisabled"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "leftIconViewBoxLeft", { get: function () { return this.bk; }, set: function (a) { this.bk = a; this.g("LeftIconViewBoxLeft"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "leftIconViewBoxTop", { get: function () { return this.bl; }, set: function (a) { this.bl = a; this.g("LeftIconViewBoxTop"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "leftIconViewBoxWidth", { get: function () { return this.bm; }, set: function (a) { this.bm = a; this.g("LeftIconViewBoxWidth"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "leftIconViewBoxHeight", { get: function () { return this.bj; }, set: function (a) { this.bj = a; this.g("LeftIconViewBoxHeight"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "rightTitle", { get: function () { return this.b7; }, set: function (a) { this.b7 = a; this.g("RightTitle"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "rightCommandArgument", { get: function () { return this.b4; }, set: function (a) { this.b4 = a; this.g("RightCommandArgument"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "rightIconName", { get: function () { return this.b6; }, set: function (a) { this.b6 = a; this.g("RightIconName"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "rightIconCollectionName", { get: function () { return this.b5; }, set: function (a) { this.b5 = a; this.g("RightIconCollectionName"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "rightIconViewBoxLeft", { get: function () { return this.bo; }, set: function (a) { this.bo = a; this.g("RightIconViewBoxLeft"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "rightIconViewBoxTop", { get: function () { return this.bp; }, set: function (a) { this.bp = a; this.g("RightIconViewBoxTop"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "rightIconViewBoxWidth", { get: function () { return this.bq; }, set: function (a) { this.bq = a; this.g("RightIconViewBoxWidth"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionButtonPairInfoDescription.prototype, "rightIconViewBoxHeight", { get: function () { return this.bn; }, set: function (a) { this.bn = a; this.g("RightIconViewBoxHeight"); }, enumerable: false, configurable: true }); ToolActionButtonPairInfoDescription.$t = markType(ToolActionButtonPairInfoDescription, 'ToolActionButtonPairInfoDescription', ToolActionInfoDescription.$); ToolActionButtonPairInfoDescription.__marshalByValue1 = true; ToolActionButtonPairInfoDescription.__marshalByValueAlias1 = "ToolActionButtonPairInfo"; return ToolActionButtonPairInfoDescription; }(ToolActionInfoDescription)); export { ToolActionButtonPairInfoDescription };