UNPKG

igniteui-react-core

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