UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

91 lines (90 loc) 2.6 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let WebGroupByRecordDescription = /*@__PURE__*/ (() => { class WebGroupByRecordDescription extends Description { constructor() { super(); this.l = null; this.o = 0; this.t = null; this.r = null; this.j = null; this.f = null; this.n = 0; this.h = null; } get_type() { return "WebGroupByRecord"; } get type() { return this.get_type(); } get expression() { return this.l; } set expression(a) { this.l = a; this.e("Expression"); } get level() { return this.o; } set level(a) { this.o = a; this.e("Level"); } get recordsRef() { return this.t; } set recordsRef(a) { this.t = a; this.e("RecordsRef"); } get value() { return this.r; } set value(a) { this.r = a; this.e("Value"); } get groupParent() { return this.j; } set groupParent(a) { this.j = a; this.e("GroupParent"); } get groups() { return this.f; } set groups(a) { this.f = a; this.e("Groups"); } get height() { return this.n; } set height(a) { this.n = a; this.e("Height"); } get column() { return this.h; } set column(a) { this.h = a; this.e("Column"); } } WebGroupByRecordDescription.$t = markType(WebGroupByRecordDescription, 'WebGroupByRecordDescription', Description.$); return WebGroupByRecordDescription; })();