UNPKG

igniteui-react-core

Version:
130 lines (129 loc) 3.88 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 { CellInfoDescription } from "./CellInfoDescription"; import { markType } from "./type"; /** * @hidden */ export let NumericCellInfoDescription = /*@__PURE__*/ (() => { class NumericCellInfoDescription extends CellInfoDescription { get_type() { return "NumericCellInfo"; } constructor() { super(); this.fu = 0; this.fq = false; this.f4 = null; this.fn = null; this.f3 = null; this.f5 = null; this.f7 = null; this.f6 = null; this.f8 = null; this.fw = 0; this.fx = 0; this.fy = 0; this.fr = false; } get numericValue() { return this.fu; } set numericValue(a) { this.fu = a; this.g("NumericValue"); } get hasDecimalValue() { return this.fq; } set hasDecimalValue(a) { this.fq = a; this.g("HasDecimalValue"); } get formatStringOverride() { return this.f4; } set formatStringOverride(a) { this.f4 = a; this.g("FormatStringOverride"); } get formatSpecifiers() { return this.fn; } set formatSpecifiers(a) { this.fn = a; this.g("FormatSpecifiers"); } get formatOverrideRef() { return this.f3; } set formatOverrideRef(a) { this.f3 = a; this.g("FormatOverrideRef"); } get negativePrefix() { return this.f5; } set negativePrefix(a) { this.f5 = a; this.g("NegativePrefix"); } get positivePrefix() { return this.f7; } set positivePrefix(a) { this.f7 = a; this.g("PositivePrefix"); } get negativeSuffix() { return this.f6; } set negativeSuffix(a) { this.f6 = a; this.g("NegativeSuffix"); } get positiveSuffix() { return this.f8; } set positiveSuffix(a) { this.f8 = a; this.g("PositiveSuffix"); } get maxFractionDigits() { return this.fw; } set maxFractionDigits(a) { this.fw = a; this.g("MaxFractionDigits"); } get minFractionDigits() { return this.fx; } set minFractionDigits(a) { this.fx = a; this.g("MinFractionDigits"); } get minIntegerDigits() { return this.fy; } set minIntegerDigits(a) { this.fy = a; this.g("MinIntegerDigits"); } get showGroupingSeparator() { return this.fr; } set showGroupingSeparator(a) { this.fr = a; this.g("ShowGroupingSeparator"); } } NumericCellInfoDescription.$t = /*@__PURE__*/ markType(NumericCellInfoDescription, 'NumericCellInfoDescription', CellInfoDescription.$); NumericCellInfoDescription.__marshalByValue1 = true; NumericCellInfoDescription.__marshalByValueAlias1 = "NumericCellModel"; return NumericCellInfoDescription; })();