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.b9 = null; this.b6 = null; this.b8 = null; this.b7 = null; this.bn = false; this.bq = 0; this.br = 0; this.bs = 0; this.bp = 0; this.cd = null; this.ca = null; this.cc = null; this.cb = null; this.bu = 0; this.bv = 0; this.bw = 0; this.bt = 0; } get leftTitle() { return this.b9; } set leftTitle(a) { this.b9 = a; this.g("LeftTitle"); } get leftCommandArgument() { return this.b6; } set leftCommandArgument(a) { this.b6 = a; this.g("LeftCommandArgument"); } get leftIconName() { return this.b8; } set leftIconName(a) { this.b8 = a; this.g("LeftIconName"); } get leftIconCollectionName() { return this.b7; } set leftIconCollectionName(a) { this.b7 = a; this.g("LeftIconCollectionName"); } get isToggleDisabled() { return this.bn; } set isToggleDisabled(a) { this.bn = a; this.g("IsToggleDisabled"); } get leftIconViewBoxLeft() { return this.bq; } set leftIconViewBoxLeft(a) { this.bq = a; this.g("LeftIconViewBoxLeft"); } get leftIconViewBoxTop() { return this.br; } set leftIconViewBoxTop(a) { this.br = a; this.g("LeftIconViewBoxTop"); } get leftIconViewBoxWidth() { return this.bs; } set leftIconViewBoxWidth(a) { this.bs = a; this.g("LeftIconViewBoxWidth"); } get leftIconViewBoxHeight() { return this.bp; } set leftIconViewBoxHeight(a) { this.bp = a; this.g("LeftIconViewBoxHeight"); } get rightTitle() { return this.cd; } set rightTitle(a) { this.cd = a; this.g("RightTitle"); } get rightCommandArgument() { return this.ca; } set rightCommandArgument(a) { this.ca = a; this.g("RightCommandArgument"); } get rightIconName() { return this.cc; } set rightIconName(a) { this.cc = a; this.g("RightIconName"); } get rightIconCollectionName() { return this.cb; } set rightIconCollectionName(a) { this.cb = a; this.g("RightIconCollectionName"); } get rightIconViewBoxLeft() { return this.bu; } set rightIconViewBoxLeft(a) { this.bu = a; this.g("RightIconViewBoxLeft"); } get rightIconViewBoxTop() { return this.bv; } set rightIconViewBoxTop(a) { this.bv = a; this.g("RightIconViewBoxTop"); } get rightIconViewBoxWidth() { return this.bw; } set rightIconViewBoxWidth(a) { this.bw = a; this.g("RightIconViewBoxWidth"); } get rightIconViewBoxHeight() { return this.bt; } set rightIconViewBoxHeight(a) { this.bt = a; this.g("RightIconViewBoxHeight"); } } ToolActionButtonPairInfoDescription.$t = /*@__PURE__*/ markType(ToolActionButtonPairInfoDescription, 'ToolActionButtonPairInfoDescription', ToolActionInfoDescription.$); ToolActionButtonPairInfoDescription.__marshalByValue1 = true; ToolActionButtonPairInfoDescription.__marshalByValueAlias1 = "ToolActionButtonPairInfo"; return ToolActionButtonPairInfoDescription; })();