igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
117 lines (116 loc) • 3.62 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.q = null;
this.s = null;
this.n = null;
this.p = null;
this.u = null;
this.g = null;
this.o = null;
this.f = null;
this.k = 0;
this.r = null;
this.t = null;
}
get_type() {
return "ColumnSummaryDescription";
}
get type() {
return this.get_type();
}
get field() {
return this.q;
}
set field(a) {
this.q = a;
this.e("Field");
}
get operand() {
return this.s;
}
set operand(a) {
this.s = a;
this.e("Operand");
}
get calculatorDisplayName() {
return this.n;
}
set calculatorDisplayName(a) {
this.n = a;
this.e("CalculatorDisplayName");
}
get displayName() {
return this.p;
}
set displayName(a) {
this.p = a;
this.e("DisplayName");
}
get valueFormat() {
return this.u;
}
set valueFormat(a) {
this.u = a;
this.e("ValueFormat");
}
get valueFormatSpecifiers() {
return this.g;
}
set valueFormatSpecifiers(a) {
this.g = a;
this.e("ValueFormatSpecifiers");
}
get displayFormat() {
return this.o;
}
set displayFormat(a) {
this.o = a;
this.e("DisplayFormat");
}
get displayFormatSpecifiers() {
return this.f;
}
set displayFormatSpecifiers(a) {
this.f = a;
this.e("DisplayFormatSpecifiers");
}
get maxFractionDigits() {
return this.k;
}
set maxFractionDigits(a) {
this.k = a;
this.e("MaxFractionDigits");
}
get formatTextRef() {
return this.r;
}
set formatTextRef(a) {
this.r = a;
this.e("FormatTextRef");
}
get provideCalculatorRef() {
return this.t;
}
set provideCalculatorRef(a) {
this.t = a;
this.e("ProvideCalculatorRef");
}
}
ColumnSummaryDescriptionDescription.$t = markType(ColumnSummaryDescriptionDescription, 'ColumnSummaryDescriptionDescription', Description.$);
ColumnSummaryDescriptionDescription.__marshalByValue = true;
ColumnSummaryDescriptionDescription.__marshalByValueAlias = "ColumnSummaryDescription";
return ColumnSummaryDescriptionDescription;
})();