UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

58 lines (57 loc) 2.1 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 WebRowToggleEventArgsDetailDescription = /*@__PURE__*/ (() => { class WebRowToggleEventArgsDetailDescription extends WebBaseEventArgsDetailDescription { constructor() { super(); this.u = null; this.v = null; this.r = false; this.q = false; } get_type() { return "WebRowToggleEventArgsDetail"; } get rowID() { return this.u; } set rowID(a) { this.u = a; this.j("RowID"); } get rowKey() { return this.v; } set rowKey(a) { this.v = a; this.j("RowKey"); } get expanded() { return this.r; } set expanded(a) { this.r = a; this.j("Expanded"); } get cancel() { return this.q; } set cancel(a) { this.q = a; this.j("Cancel"); } } WebRowToggleEventArgsDetailDescription.$t = markType(WebRowToggleEventArgsDetailDescription, 'WebRowToggleEventArgsDetailDescription', WebBaseEventArgsDetailDescription.$); WebRowToggleEventArgsDetailDescription.__marshalByValue1 = true; WebRowToggleEventArgsDetailDescription.__marshalByValueAlias1 = "RowToggleEventArgsDetail"; return WebRowToggleEventArgsDetailDescription; })();