igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
125 lines (124 loc) • 3.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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let ColumnSummaryDescriptionDescription = /*@__PURE__*/ (() => {
class ColumnSummaryDescriptionDescription extends Description {
constructor() {
super();
this.x = null;
this.z = null;
this.u = null;
this.w = null;
this.ab = null;
this.p = false;
this.l = null;
this.v = null;
this.k = null;
this.r = 0;
this.y = null;
this.aa = null;
}
get_type() {
return "ColumnSummaryDescription";
}
get type() {
return this.get_type();
}
get field() {
return this.x;
}
set field(a) {
this.x = a;
this.j("Field");
}
get operand() {
return this.z;
}
set operand(a) {
this.z = a;
this.j("Operand");
}
get calculatorDisplayName() {
return this.u;
}
set calculatorDisplayName(a) {
this.u = a;
this.j("CalculatorDisplayName");
}
get displayName() {
return this.w;
}
set displayName(a) {
this.w = a;
this.j("DisplayName");
}
get valueFormat() {
return this.ab;
}
set valueFormat(a) {
this.ab = a;
this.j("ValueFormat");
}
get shouldDisplay() {
return this.p;
}
set shouldDisplay(a) {
this.p = a;
this.j("ShouldDisplay");
}
get valueFormatSpecifiers() {
return this.l;
}
set valueFormatSpecifiers(a) {
this.l = a;
this.j("ValueFormatSpecifiers");
}
get displayFormat() {
return this.v;
}
set displayFormat(a) {
this.v = a;
this.j("DisplayFormat");
}
get displayFormatSpecifiers() {
return this.k;
}
set displayFormatSpecifiers(a) {
this.k = a;
this.j("DisplayFormatSpecifiers");
}
get maxFractionDigits() {
return this.r;
}
set maxFractionDigits(a) {
this.r = a;
this.j("MaxFractionDigits");
}
get formatTextRef() {
return this.y;
}
set formatTextRef(a) {
this.y = a;
this.j("FormatTextRef");
}
get provideCalculatorRef() {
return this.aa;
}
set provideCalculatorRef(a) {
this.aa = a;
this.j("ProvideCalculatorRef");
}
}
ColumnSummaryDescriptionDescription.$t = markType(ColumnSummaryDescriptionDescription, 'ColumnSummaryDescriptionDescription', Description.$);
ColumnSummaryDescriptionDescription.__marshalByValue = true;
ColumnSummaryDescriptionDescription.__marshalByValueAlias = "ColumnSummaryDescription";
return ColumnSummaryDescriptionDescription;
})();