igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
131 lines (130 loc) • 3.69 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let TreemapNodePointerEventArgsDescription = /*@__PURE__*/ (() => {
class TreemapNodePointerEventArgsDescription extends Description {
constructor() {
super();
this.v = 0;
this.u = 0;
this.aa = null;
this.ab = null;
this.ad = null;
this.k = null;
this.o = false;
this.m = false;
this.n = false;
this.ac = null;
this.t = 0;
this.ae = null;
this.s = 0;
}
get_type() {
return "TreemapNodePointerEventArgs";
}
get type() {
return this.get_type();
}
get value() {
return this.v;
}
set value(a) {
this.v = a;
this.j("Value");
}
get sum() {
return this.u;
}
set sum(a) {
this.u = a;
this.j("Sum");
}
get customValueRef() {
return this.aa;
}
set customValueRef(a) {
this.aa = a;
this.j("CustomValueRef");
}
get itemRef() {
return this.ab;
}
set itemRef(a) {
this.ab = a;
this.j("ItemRef");
}
get parentItemRef() {
return this.ad;
}
set parentItemRef(a) {
this.ad = a;
this.j("ParentItemRef");
}
get position() {
return this.k;
}
set position(a) {
this.k = a;
this.j("Position");
}
get isRightButton() {
return this.o;
}
set isRightButton(a) {
this.o = a;
this.j("IsRightButton");
}
get isHandled() {
return this.m;
}
set isHandled(a) {
this.m = a;
this.j("IsHandled");
}
get isOverHeader() {
return this.n;
}
set isOverHeader(a) {
this.n = a;
this.j("IsOverHeader");
}
get label() {
return this.ac;
}
set label(a) {
this.ac = a;
this.j("Label");
}
get parentValue() {
return this.t;
}
set parentValue(a) {
this.t = a;
this.j("ParentValue");
}
get parentLabel() {
return this.ae;
}
set parentLabel(a) {
this.ae = a;
this.j("ParentLabel");
}
get parentSum() {
return this.s;
}
set parentSum(a) {
this.s = a;
this.j("ParentSum");
}
}
TreemapNodePointerEventArgsDescription.$t = markType(TreemapNodePointerEventArgsDescription, 'TreemapNodePointerEventArgsDescription', Description.$);
return TreemapNodePointerEventArgsDescription;
})();