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.q = null; this.t = 0; this.y = null; this.w = null; this.o = null; this.k = null; this.s = 0; this.m = null; } get_type() { return "WebGroupByRecord"; } get type() { return this.get_type(); } get expression() { return this.q; } set expression(a) { this.q = a; this.j("Expression"); } get level() { return this.t; } set level(a) { this.t = a; this.j("Level"); } get recordsRef() { return this.y; } set recordsRef(a) { this.y = a; this.j("RecordsRef"); } get value() { return this.w; } set value(a) { this.w = a; this.j("Value"); } get groupParent() { return this.o; } set groupParent(a) { this.o = a; this.j("GroupParent"); } get groups() { return this.k; } set groups(a) { this.k = a; this.j("Groups"); } get height() { return this.s; } set height(a) { this.s = a; this.j("Height"); } get column() { return this.m; } set column(a) { this.m = a; this.j("Column"); } } WebGroupByRecordDescription.$t = markType(WebGroupByRecordDescription, 'WebGroupByRecordDescription', Description.$); return WebGroupByRecordDescription; })();