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.gz = 0; this.gv = false; this.g9 = null; this.gs = null; this.g8 = null; this.ha = null; this.hc = null; this.hb = null; this.hd = null; this.g1 = 0; this.g2 = 0; this.g3 = 0; this.gw = false; } get numericValue() { return this.gz; } set numericValue(a) { this.gz = a; this.j("NumericValue"); } get hasDecimalValue() { return this.gv; } set hasDecimalValue(a) { this.gv = a; this.j("HasDecimalValue"); } get formatStringOverride() { return this.g9; } set formatStringOverride(a) { this.g9 = a; this.j("FormatStringOverride"); } get formatSpecifiers() { return this.gs; } set formatSpecifiers(a) { this.gs = a; this.j("FormatSpecifiers"); } get formatOverrideRef() { return this.g8; } set formatOverrideRef(a) { this.g8 = a; this.j("FormatOverrideRef"); } get negativePrefix() { return this.ha; } set negativePrefix(a) { this.ha = a; this.j("NegativePrefix"); } get positivePrefix() { return this.hc; } set positivePrefix(a) { this.hc = a; this.j("PositivePrefix"); } get negativeSuffix() { return this.hb; } set negativeSuffix(a) { this.hb = a; this.j("NegativeSuffix"); } get positiveSuffix() { return this.hd; } set positiveSuffix(a) { this.hd = a; this.j("PositiveSuffix"); } get maxFractionDigits() { return this.g1; } set maxFractionDigits(a) { this.g1 = a; this.j("MaxFractionDigits"); } get minFractionDigits() { return this.g2; } set minFractionDigits(a) { this.g2 = a; this.j("MinFractionDigits"); } get minIntegerDigits() { return this.g3; } set minIntegerDigits(a) { this.g3 = a; this.j("MinIntegerDigits"); } get showGroupingSeparator() { return this.gw; } set showGroupingSeparator(a) { this.gw = a; this.j("ShowGroupingSeparator"); } } NumericCellInfoDescription.$t = /*@__PURE__*/ markType(NumericCellInfoDescription, 'NumericCellInfoDescription', CellInfoDescription.$); NumericCellInfoDescription.__marshalByValue1 = true; NumericCellInfoDescription.__marshalByValueAlias1 = "NumericCellModel"; return NumericCellInfoDescription; })();