igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
130 lines (129 loc) • 3.99 kB
JavaScript
/*
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.gt = 0;
this.gp = false;
this.g3 = null;
this.gm = null;
this.g2 = null;
this.g4 = null;
this.g6 = null;
this.g5 = null;
this.g7 = null;
this.gv = 0;
this.gw = 0;
this.gx = 0;
this.gq = false;
}
get_type() {
return "NumericCellInfo";
}
get numericValue() {
return this.gt;
}
set numericValue(a) {
this.gt = a;
this.j("NumericValue");
}
get hasDecimalValue() {
return this.gp;
}
set hasDecimalValue(a) {
this.gp = a;
this.j("HasDecimalValue");
}
get formatStringOverride() {
return this.g3;
}
set formatStringOverride(a) {
this.g3 = a;
this.j("FormatStringOverride");
}
get formatSpecifiers() {
return this.gm;
}
set formatSpecifiers(a) {
this.gm = a;
this.j("FormatSpecifiers");
}
get formatOverrideRef() {
return this.g2;
}
set formatOverrideRef(a) {
this.g2 = a;
this.j("FormatOverrideRef");
}
get negativePrefix() {
return this.g4;
}
set negativePrefix(a) {
this.g4 = a;
this.j("NegativePrefix");
}
get positivePrefix() {
return this.g6;
}
set positivePrefix(a) {
this.g6 = a;
this.j("PositivePrefix");
}
get negativeSuffix() {
return this.g5;
}
set negativeSuffix(a) {
this.g5 = a;
this.j("NegativeSuffix");
}
get positiveSuffix() {
return this.g7;
}
set positiveSuffix(a) {
this.g7 = a;
this.j("PositiveSuffix");
}
get maxFractionDigits() {
return this.gv;
}
set maxFractionDigits(a) {
this.gv = a;
this.j("MaxFractionDigits");
}
get minFractionDigits() {
return this.gw;
}
set minFractionDigits(a) {
this.gw = a;
this.j("MinFractionDigits");
}
get minIntegerDigits() {
return this.gx;
}
set minIntegerDigits(a) {
this.gx = a;
this.j("MinIntegerDigits");
}
get showGroupingSeparator() {
return this.gq;
}
set showGroupingSeparator(a) {
this.gq = a;
this.j("ShowGroupingSeparator");
}
}
NumericCellInfoDescription.$t = markType(NumericCellInfoDescription, 'NumericCellInfoDescription', CellInfoDescription.$);
NumericCellInfoDescription.__marshalByValue1 = true;
NumericCellInfoDescription.__marshalByValueAlias1 = "NumericCellModel";
return NumericCellInfoDescription;
})();