igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
74 lines (73 loc) • 2.59 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 { ColumnSortDescriptionDescription } from "./ColumnSortDescriptionDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let ColumnGroupDescriptionDescription = /*@__PURE__*/ (() => {
class ColumnGroupDescriptionDescription extends ColumnSortDescriptionDescription {
constructor() {
super();
this.aa = null;
this.s = null;
this.x = null;
this.r = null;
this.y = null;
this.z = null;
}
get_type() {
return "ColumnGroupDescription";
}
get valueFormat() {
return this.aa;
}
set valueFormat(a) {
this.aa = a;
this.j("ValueFormat");
}
get valueFormatSpecifiers() {
return this.s;
}
set valueFormatSpecifiers(a) {
this.s = a;
this.j("ValueFormatSpecifiers");
}
get displayFormat() {
return this.x;
}
set displayFormat(a) {
this.x = a;
this.j("DisplayFormat");
}
get displayFormatSpecifiers() {
return this.r;
}
set displayFormatSpecifiers(a) {
this.r = a;
this.j("DisplayFormatSpecifiers");
}
get displayName() {
return this.y;
}
set displayName(a) {
this.y = a;
this.j("DisplayName");
}
get formatTextRef() {
return this.z;
}
set formatTextRef(a) {
this.z = a;
this.j("FormatTextRef");
}
}
ColumnGroupDescriptionDescription.$t = markType(ColumnGroupDescriptionDescription, 'ColumnGroupDescriptionDescription', ColumnSortDescriptionDescription.$);
ColumnGroupDescriptionDescription.__marshalByValue1 = true;
ColumnGroupDescriptionDescription.__marshalByValueAlias1 = "ColumnGroupDescription";
return ColumnGroupDescriptionDescription;
})();