igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
77 lines (76 loc) • 2.46 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 DataGridSummaryResultDescription = /*@__PURE__*/ (() => {
class DataGridSummaryResultDescription extends Description {
constructor() {
super();
this.s = null;
this.u = null;
this.t = null;
this.p = null;
this.n = 0;
this.l = false;
}
get_type() {
return "DataGridSummaryResult";
}
get type() {
return this.get_type();
}
get groupKeyRef() {
return this.s;
}
set groupKeyRef(a) {
this.s = a;
this.j("GroupKeyRef");
}
get propertyName() {
return this.u;
}
set propertyName(a) {
this.u = a;
this.j("PropertyName");
}
get operand() {
return this.t;
}
set operand(a) {
this.t = a;
this.j("Operand");
}
get value() {
return this.p;
}
set value(a) {
this.p = a;
this.j("Value");
}
get summaryIndex() {
return this.n;
}
set summaryIndex(a) {
this.n = a;
this.j("SummaryIndex");
}
get shouldDisplay() {
return this.l;
}
set shouldDisplay(a) {
this.l = a;
this.j("ShouldDisplay");
}
}
DataGridSummaryResultDescription.$t = markType(DataGridSummaryResultDescription, 'DataGridSummaryResultDescription', Description.$);
DataGridSummaryResultDescription.__marshalByValue = true;
DataGridSummaryResultDescription.__marshalByValueAlias = "DefaultSummaryResult";
return DataGridSummaryResultDescription;
})();