UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

72 lines (71 loc) 2.53 kB
/* 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.ay = null; this.a0 = null; this.ax = null; this.av = 0; this.a1 = null; this.az = null; } get_type() { return "GridColumnSummaryOptions"; } get summaryCaption() { return this.ay; } set summaryCaption(a) { this.ay = a; this.j("SummaryCaption"); } get summaryListDensity() { return this.a0; } set summaryListDensity(a) { this.a0 = a; this.j("SummaryListDensity"); } get actualSummaryListDensity() { return this.ax; } set actualSummaryListDensity(a) { this.ax = a; this.j("ActualSummaryListDensity"); } get activeCount() { return this.av; } set activeCount(a) { this.av = a; this.j("ActiveCount"); } get summaryListTextColor() { return this.a1; } set summaryListTextColor(a) { this.a1 = a; this.j("SummaryListTextColor"); } get summaryListBackground() { return this.az; } set summaryListBackground(a) { this.az = a; this.j("SummaryListBackground"); } } GridColumnSummaryOptionsDescription.$t = markType(GridColumnSummaryOptionsDescription, 'GridColumnSummaryOptionsDescription', GridColumnOptionsSectionBaseDescription.$); return GridColumnSummaryOptionsDescription; })();