UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

131 lines (130 loc) 3.68 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 TreemapNodePointerEventArgsDescription = /*@__PURE__*/ (() => { class TreemapNodePointerEventArgsDescription extends Description { constructor() { super(); this.q = 0; this.p = 0; this.v = null; this.w = null; this.y = null; this.f = null; this.j = false; this.h = false; this.i = false; this.x = null; this.o = 0; this.z = null; this.n = 0; } get_type() { return "TreemapNodePointerEventArgs"; } get type() { return this.get_type(); } get value() { return this.q; } set value(a) { this.q = a; this.e("Value"); } get sum() { return this.p; } set sum(a) { this.p = a; this.e("Sum"); } get customValueRef() { return this.v; } set customValueRef(a) { this.v = a; this.e("CustomValueRef"); } get itemRef() { return this.w; } set itemRef(a) { this.w = a; this.e("ItemRef"); } get parentItemRef() { return this.y; } set parentItemRef(a) { this.y = a; this.e("ParentItemRef"); } get position() { return this.f; } set position(a) { this.f = a; this.e("Position"); } get isRightButton() { return this.j; } set isRightButton(a) { this.j = a; this.e("IsRightButton"); } get isHandled() { return this.h; } set isHandled(a) { this.h = a; this.e("IsHandled"); } get isOverHeader() { return this.i; } set isOverHeader(a) { this.i = a; this.e("IsOverHeader"); } get label() { return this.x; } set label(a) { this.x = a; this.e("Label"); } get parentValue() { return this.o; } set parentValue(a) { this.o = a; this.e("ParentValue"); } get parentLabel() { return this.z; } set parentLabel(a) { this.z = a; this.e("ParentLabel"); } get parentSum() { return this.n; } set parentSum(a) { this.n = a; this.e("ParentSum"); } } TreemapNodePointerEventArgsDescription.$t = markType(TreemapNodePointerEventArgsDescription, 'TreemapNodePointerEventArgsDescription', Description.$); return TreemapNodePointerEventArgsDescription; })();