igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
125 lines (124 loc) • 3.65 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 WebPivotDimensionDetailDescription = /*@__PURE__*/ (() => {
class WebPivotDimensionDetailDescription extends Description {
constructor() {
super();
this.m = null;
this.ab = null;
this.z = null;
this.p = false;
this.k = null;
this.r = false;
this.ac = null;
this.y = null;
this.ad = null;
this.v = 0;
this.q = false;
this.aa = null;
}
get_type() {
return "WebPivotDimensionDetail";
}
get type() {
return this.get_type();
}
get childLevel() {
return this.m;
}
set childLevel(a) {
this.m = a;
this.j("ChildLevel");
}
get memberName() {
return this.ab;
}
set memberName(a) {
this.ab = a;
this.j("MemberName");
}
get displayName() {
return this.z;
}
set displayName(a) {
this.z = a;
this.j("DisplayName");
}
get enabled() {
return this.p;
}
set enabled(a) {
this.p = a;
this.j("Enabled");
}
get filter() {
return this.k;
}
set filter(a) {
this.k = a;
this.j("Filter");
}
get sortable() {
return this.r;
}
set sortable(a) {
this.r = a;
this.j("Sortable");
}
get sortDirection() {
return this.ac;
}
set sortDirection(a) {
this.ac = a;
this.j("SortDirection");
}
get dataType() {
return this.y;
}
set dataType(a) {
this.y = a;
this.j("DataType");
}
get width() {
return this.ad;
}
set width(a) {
this.ad = a;
this.j("Width");
}
get level() {
return this.v;
}
set level(a) {
this.v = a;
this.j("Level");
}
get horizontalSummary() {
return this.q;
}
set horizontalSummary(a) {
this.q = a;
this.j("HorizontalSummary");
}
get memberFunctionRef() {
return this.aa;
}
set memberFunctionRef(a) {
this.aa = a;
this.j("MemberFunctionRef");
}
}
WebPivotDimensionDetailDescription.$t = markType(WebPivotDimensionDetailDescription, 'WebPivotDimensionDetailDescription', Description.$);
WebPivotDimensionDetailDescription.__marshalByValue = true;
WebPivotDimensionDetailDescription.__marshalByValueAlias = "PivotDimensionDetail";
return WebPivotDimensionDetailDescription;
})();