UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

58 lines (57 loc) 2.14 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 { WebBaseEventArgsDetailDescription } from "./WebBaseEventArgsDetailDescription"; import { markType } from "./type"; /** * @hidden */ export let WebActiveNodeChangeEventArgsDetailDescription = /*@__PURE__*/ (() => { class WebActiveNodeChangeEventArgsDetailDescription extends WebBaseEventArgsDetailDescription { constructor() { super(); this.s = 0; this.q = 0; this.r = 0; this.x = null; } get_type() { return "WebActiveNodeChangeEventArgsDetail"; } get row() { return this.s; } set row(a) { this.s = a; this.j("Row"); } get column() { return this.q; } set column(a) { this.q = a; this.j("Column"); } get level() { return this.r; } set level(a) { this.r = a; this.j("Level"); } get tag() { return this.x; } set tag(a) { this.x = a; this.j("Tag"); } } WebActiveNodeChangeEventArgsDetailDescription.$t = markType(WebActiveNodeChangeEventArgsDetailDescription, 'WebActiveNodeChangeEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebActiveNodeChangeEventArgsDetailDescription.__marshalByValue1 = true; WebActiveNodeChangeEventArgsDetailDescription.__marshalByValueAlias1 = "ActiveNodeChangeEventArgsDetail"; return WebActiveNodeChangeEventArgsDetailDescription; })();