igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
153 lines (152 loc) • 4.55 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.fx = null;
this.fz = null;
this.fy = null;
this.f0 = null;
this.fl = 0;
this.fm = 0;
this.fn = 0;
this.fj = false;
this.fw = null;
this.fe = null;
this.fv = null;
this.ft = null;
this.fr = null;
this.fg = null;
this.fs = null;
this.fu = null;
}
get_type() {
return "NumericColumn";
}
get negativePrefix() {
return this.fx;
}
set negativePrefix(a) {
this.fx = a;
this.e("NegativePrefix");
}
get positivePrefix() {
return this.fz;
}
set positivePrefix(a) {
this.fz = a;
this.e("PositivePrefix");
}
get negativeSuffix() {
return this.fy;
}
set negativeSuffix(a) {
this.fy = a;
this.e("NegativeSuffix");
}
get positiveSuffix() {
return this.f0;
}
set positiveSuffix(a) {
this.f0 = a;
this.e("PositiveSuffix");
}
get maxFractionDigits() {
return this.fl;
}
set maxFractionDigits(a) {
this.fl = a;
this.e("MaxFractionDigits");
}
get minFractionDigits() {
return this.fm;
}
set minFractionDigits(a) {
this.fm = a;
this.e("MinFractionDigits");
}
get minIntegerDigits() {
return this.fn;
}
set minIntegerDigits(a) {
this.fn = a;
this.e("MinIntegerDigits");
}
get showGroupingSeparator() {
return this.fj;
}
set showGroupingSeparator(a) {
this.fj = a;
this.e("ShowGroupingSeparator");
}
get formatString() {
return this.fw;
}
set formatString(a) {
this.fw = a;
this.e("FormatString");
}
get formatSpecifiers() {
return this.fe;
}
set formatSpecifiers(a) {
this.fe = a;
this.e("FormatSpecifiers");
}
get formatOverrideRef() {
return this.fv;
}
set formatOverrideRef(a) {
this.fv = a;
this.e("FormatOverrideRef");
}
get editorType() {
return this.ft;
}
set editorType(a) {
this.ft = a;
this.e("EditorType");
}
get editorDataSourceRef() {
return this.fr;
}
set editorDataSourceRef(a) {
this.fr = a;
this.e("EditorDataSourceRef");
}
get editorDataSource() {
return this.fg;
}
set editorDataSource(a) {
this.fg = a;
this.e("EditorDataSource");
}
get editorTextField() {
return this.fs;
}
set editorTextField(a) {
this.fs = a;
this.e("EditorTextField");
}
get editorValueField() {
return this.fu;
}
set editorValueField(a) {
this.fu = a;
this.e("EditorValueField");
}
}
NumericColumnDescription.$t = markType(NumericColumnDescription, 'NumericColumnDescription', DataGridColumnDescription.$);
NumericColumnDescription.__canMarshalByValue1 = true;
return NumericColumnDescription;
})();