igniteui-react-core
Version:
Ignite UI React Core.
170 lines (169 loc) • 4.87 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 {
get_type() {
return "NumericColumn";
}
constructor() {
super();
this.jk = null;
this.jm = null;
this.jl = null;
this.jn = null;
this.i7 = 0;
this.i8 = 0;
this.i9 = 0;
this.i3 = false;
this.i4 = false;
this.jj = null;
this.iw = null;
this.ji = null;
this.jg = null;
this.je = null;
this.iy = null;
this.i0 = null;
this.jf = null;
this.jh = null;
}
get negativePrefix() {
return this.jk;
}
set negativePrefix(a) {
this.jk = a;
this.j("NegativePrefix");
}
get positivePrefix() {
return this.jm;
}
set positivePrefix(a) {
this.jm = a;
this.j("PositivePrefix");
}
get negativeSuffix() {
return this.jl;
}
set negativeSuffix(a) {
this.jl = a;
this.j("NegativeSuffix");
}
get positiveSuffix() {
return this.jn;
}
set positiveSuffix(a) {
this.jn = a;
this.j("PositiveSuffix");
}
get maxFractionDigits() {
return this.i7;
}
set maxFractionDigits(a) {
this.i7 = a;
this.j("MaxFractionDigits");
}
get minFractionDigits() {
return this.i8;
}
set minFractionDigits(a) {
this.i8 = a;
this.j("MinFractionDigits");
}
get minIntegerDigits() {
return this.i9;
}
set minIntegerDigits(a) {
this.i9 = a;
this.j("MinIntegerDigits");
}
get isPercent() {
return this.i3;
}
set isPercent(a) {
this.i3 = a;
this.j("IsPercent");
}
get showGroupingSeparator() {
return this.i4;
}
set showGroupingSeparator(a) {
this.i4 = a;
this.j("ShowGroupingSeparator");
}
get formatString() {
return this.jj;
}
set formatString(a) {
this.jj = a;
this.j("FormatString");
}
get formatSpecifiers() {
return this.iw;
}
set formatSpecifiers(a) {
this.iw = a;
this.j("FormatSpecifiers");
}
get formatOverrideRef() {
return this.ji;
}
set formatOverrideRef(a) {
this.ji = a;
this.j("FormatOverrideRef");
}
get editorType() {
return this.jg;
}
set editorType(a) {
this.jg = a;
this.j("EditorType");
}
get editorDataSourceRef() {
return this.je;
}
set editorDataSourceRef(a) {
this.je = a;
this.j("EditorDataSourceRef");
}
get dataSource() {
return this.iy;
}
set dataSource(a) {
this.iy = a;
this.j("DataSource");
}
get genericDataSource() {
return this.i0;
}
set genericDataSource(a) {
this.i0 = a;
this.j("GenericDataSource");
}
get editorTextField() {
return this.jf;
}
set editorTextField(a) {
this.jf = a;
this.j("EditorTextField");
}
get editorValueField() {
return this.jh;
}
set editorValueField(a) {
this.jh = a;
this.j("EditorValueField");
}
}
NumericColumnDescription.$t = /*@__PURE__*/ markType(NumericColumnDescription, 'NumericColumnDescription', DataGridColumnDescription.$);
NumericColumnDescription.__canMarshalByValue1 = true;
NumericColumnDescription.__marshalByValueAlias1 = "NumericColumn";
return NumericColumnDescription;
})();