igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
162 lines (161 loc) • 4.83 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 { DataGridColumnDescription } from "./DataGridColumnDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let NumericColumnDescription = /*@__PURE__*/ (() => {
class NumericColumnDescription extends DataGridColumnDescription {
constructor() {
super();
this.hm = null;
this.ho = null;
this.hn = null;
this.hp = null;
this.g9 = 0;
this.ha = 0;
this.hb = 0;
this.g7 = false;
this.hl = null;
this.g0 = null;
this.hk = null;
this.hi = null;
this.hg = null;
this.g2 = null;
this.g4 = null;
this.hh = null;
this.hj = null;
}
get_type() {
return "NumericColumn";
}
get negativePrefix() {
return this.hm;
}
set negativePrefix(a) {
this.hm = a;
this.j("NegativePrefix");
}
get positivePrefix() {
return this.ho;
}
set positivePrefix(a) {
this.ho = a;
this.j("PositivePrefix");
}
get negativeSuffix() {
return this.hn;
}
set negativeSuffix(a) {
this.hn = a;
this.j("NegativeSuffix");
}
get positiveSuffix() {
return this.hp;
}
set positiveSuffix(a) {
this.hp = a;
this.j("PositiveSuffix");
}
get maxFractionDigits() {
return this.g9;
}
set maxFractionDigits(a) {
this.g9 = a;
this.j("MaxFractionDigits");
}
get minFractionDigits() {
return this.ha;
}
set minFractionDigits(a) {
this.ha = a;
this.j("MinFractionDigits");
}
get minIntegerDigits() {
return this.hb;
}
set minIntegerDigits(a) {
this.hb = a;
this.j("MinIntegerDigits");
}
get showGroupingSeparator() {
return this.g7;
}
set showGroupingSeparator(a) {
this.g7 = a;
this.j("ShowGroupingSeparator");
}
get formatString() {
return this.hl;
}
set formatString(a) {
this.hl = a;
this.j("FormatString");
}
get formatSpecifiers() {
return this.g0;
}
set formatSpecifiers(a) {
this.g0 = a;
this.j("FormatSpecifiers");
}
get formatOverrideRef() {
return this.hk;
}
set formatOverrideRef(a) {
this.hk = a;
this.j("FormatOverrideRef");
}
get editorType() {
return this.hi;
}
set editorType(a) {
this.hi = a;
this.j("EditorType");
}
get editorDataSourceRef() {
return this.hg;
}
set editorDataSourceRef(a) {
this.hg = a;
this.j("EditorDataSourceRef");
}
get dataSource() {
return this.g2;
}
set dataSource(a) {
this.g2 = a;
this.j("DataSource");
}
get genericDataSource() {
return this.g4;
}
set genericDataSource(a) {
this.g4 = a;
this.j("GenericDataSource");
}
get editorTextField() {
return this.hh;
}
set editorTextField(a) {
this.hh = a;
this.j("EditorTextField");
}
get editorValueField() {
return this.hj;
}
set editorValueField(a) {
this.hj = a;
this.j("EditorValueField");
}
}
NumericColumnDescription.$t = markType(NumericColumnDescription, 'NumericColumnDescription', DataGridColumnDescription.$);
NumericColumnDescription.__canMarshalByValue1 = true;
NumericColumnDescription.__marshalByValueAlias1 = "NumericColumn";
return NumericColumnDescription;
})();