igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
56 lines (55 loc) • 2.07 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 { GridColumnOptionsSectionBaseDescription } from "./GridColumnOptionsSectionBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let GridColumnSummaryOptionsDescription = /*@__PURE__*/ (() => {
class GridColumnSummaryOptionsDescription extends GridColumnOptionsSectionBaseDescription {
constructor() {
super();
this.at = null;
this.au = null;
this.as = null;
this.aq = 0;
}
get_type() {
return "GridColumnSummaryOptions";
}
get summaryCaption() {
return this.at;
}
set summaryCaption(a) {
this.at = a;
this.e("SummaryCaption");
}
get summaryListDensity() {
return this.au;
}
set summaryListDensity(a) {
this.au = a;
this.e("SummaryListDensity");
}
get actualSummaryListDensity() {
return this.as;
}
set actualSummaryListDensity(a) {
this.as = a;
this.e("ActualSummaryListDensity");
}
get activeCount() {
return this.aq;
}
set activeCount(a) {
this.aq = a;
this.e("ActiveCount");
}
}
GridColumnSummaryOptionsDescription.$t = markType(GridColumnSummaryOptionsDescription, 'GridColumnSummaryOptionsDescription', GridColumnOptionsSectionBaseDescription.$);
return GridColumnSummaryOptionsDescription;
})();