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.n = 0; this.l = 0; this.m = 0; this.s = null; } get_type() { return "WebActiveNodeChangeEventArgsDetail"; } get row() { return this.n; } set row(a) { this.n = a; this.e("Row"); } get column() { return this.l; } set column(a) { this.l = a; this.e("Column"); } get level() { return this.m; } set level(a) { this.m = a; this.e("Level"); } get tag() { return this.s; } set tag(a) { this.s = a; this.e("Tag"); } } WebActiveNodeChangeEventArgsDetailDescription.$t = markType(WebActiveNodeChangeEventArgsDetailDescription, 'WebActiveNodeChangeEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebActiveNodeChangeEventArgsDetailDescription.__marshalByValue1 = true; WebActiveNodeChangeEventArgsDetailDescription.__marshalByValueAlias1 = "ActiveNodeChangeEventArgsDetail"; return WebActiveNodeChangeEventArgsDetailDescription; })();