igniteui-react-core
Version:
Ignite UI React Core.
125 lines (124 loc) • 3.71 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let ColumnSummaryDescriptionDescription = /*@__PURE__*/ (() => {
class ColumnSummaryDescriptionDescription extends Description {
get_type() {
return "ColumnSummaryDescription";
}
get type() {
return this.get_type();
}
constructor() {
super();
this.u = null;
this.w = null;
this.r = null;
this.t = null;
this.y = null;
this.m = false;
this.i = null;
this.s = null;
this.h = null;
this.o = 0;
this.v = null;
this.x = null;
}
get field() {
return this.u;
}
set field(a) {
this.u = a;
this.g("Field");
}
get operand() {
return this.w;
}
set operand(a) {
this.w = a;
this.g("Operand");
}
get calculatorDisplayName() {
return this.r;
}
set calculatorDisplayName(a) {
this.r = a;
this.g("CalculatorDisplayName");
}
get displayName() {
return this.t;
}
set displayName(a) {
this.t = a;
this.g("DisplayName");
}
get valueFormat() {
return this.y;
}
set valueFormat(a) {
this.y = a;
this.g("ValueFormat");
}
get shouldDisplay() {
return this.m;
}
set shouldDisplay(a) {
this.m = a;
this.g("ShouldDisplay");
}
get valueFormatSpecifiers() {
return this.i;
}
set valueFormatSpecifiers(a) {
this.i = a;
this.g("ValueFormatSpecifiers");
}
get displayFormat() {
return this.s;
}
set displayFormat(a) {
this.s = a;
this.g("DisplayFormat");
}
get displayFormatSpecifiers() {
return this.h;
}
set displayFormatSpecifiers(a) {
this.h = a;
this.g("DisplayFormatSpecifiers");
}
get maxFractionDigits() {
return this.o;
}
set maxFractionDigits(a) {
this.o = a;
this.g("MaxFractionDigits");
}
get formatTextRef() {
return this.v;
}
set formatTextRef(a) {
this.v = a;
this.g("FormatTextRef");
}
get provideCalculatorRef() {
return this.x;
}
set provideCalculatorRef(a) {
this.x = a;
this.g("ProvideCalculatorRef");
}
}
ColumnSummaryDescriptionDescription.$t = /*@__PURE__*/ markType(ColumnSummaryDescriptionDescription, 'ColumnSummaryDescriptionDescription', Description.$);
ColumnSummaryDescriptionDescription.__marshalByValue = true;
ColumnSummaryDescriptionDescription.__marshalByValueAlias = "ColumnSummaryDescription";
return ColumnSummaryDescriptionDescription;
})();