UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

130 lines (129 loc) 3.99 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 { constructor() { super(); this.fq = 0; this.fm = false; this.f0 = null; this.fj = null; this.fz = null; this.f1 = null; this.f3 = null; this.f2 = null; this.f4 = null; this.fs = 0; this.ft = 0; this.fu = 0; this.fn = false; } get_type() { return "NumericCellInfo"; } get numericValue() { return this.fq; } set numericValue(a) { this.fq = a; this.e("NumericValue"); } get hasDecimalValue() { return this.fm; } set hasDecimalValue(a) { this.fm = a; this.e("HasDecimalValue"); } get formatStringOverride() { return this.f0; } set formatStringOverride(a) { this.f0 = a; this.e("FormatStringOverride"); } get formatSpecifiers() { return this.fj; } set formatSpecifiers(a) { this.fj = a; this.e("FormatSpecifiers"); } get formatOverrideRef() { return this.fz; } set formatOverrideRef(a) { this.fz = a; this.e("FormatOverrideRef"); } get negativePrefix() { return this.f1; } set negativePrefix(a) { this.f1 = a; this.e("NegativePrefix"); } get positivePrefix() { return this.f3; } set positivePrefix(a) { this.f3 = a; this.e("PositivePrefix"); } get negativeSuffix() { return this.f2; } set negativeSuffix(a) { this.f2 = a; this.e("NegativeSuffix"); } get positiveSuffix() { return this.f4; } set positiveSuffix(a) { this.f4 = a; this.e("PositiveSuffix"); } get maxFractionDigits() { return this.fs; } set maxFractionDigits(a) { this.fs = a; this.e("MaxFractionDigits"); } get minFractionDigits() { return this.ft; } set minFractionDigits(a) { this.ft = a; this.e("MinFractionDigits"); } get minIntegerDigits() { return this.fu; } set minIntegerDigits(a) { this.fu = a; this.e("MinIntegerDigits"); } get showGroupingSeparator() { return this.fn; } set showGroupingSeparator(a) { this.fn = a; this.e("ShowGroupingSeparator"); } } NumericCellInfoDescription.$t = markType(NumericCellInfoDescription, 'NumericCellInfoDescription', CellInfoDescription.$); NumericCellInfoDescription.__marshalByValue1 = true; NumericCellInfoDescription.__marshalByValueAlias1 = "NumericCellModel"; return NumericCellInfoDescription; })();