UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

85 lines (84 loc) 2.76 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 WebRowSelectionEventArgsDetailDescription = /*@__PURE__*/ (() => { class WebRowSelectionEventArgsDetailDescription extends Description { constructor() { super(); this.u = null; this.t = null; this.s = null; this.v = null; this.l = false; this.m = false; this.p = null; } get_type() { return "WebRowSelectionEventArgsDetail"; } get type() { return this.get_type(); } get oldSelectionRef() { return this.u; } set oldSelectionRef(a) { this.u = a; this.j("OldSelectionRef"); } get newSelectionRef() { return this.t; } set newSelectionRef(a) { this.t = a; this.j("NewSelectionRef"); } get addedRef() { return this.s; } set addedRef(a) { this.s = a; this.j("AddedRef"); } get removedRef() { return this.v; } set removedRef(a) { this.v = a; this.j("RemovedRef"); } get allRowsSelected() { return this.l; } set allRowsSelected(a) { this.l = a; this.j("AllRowsSelected"); } get cancel() { return this.m; } set cancel(a) { this.m = a; this.j("Cancel"); } get owner() { return this.p; } set owner(a) { this.p = a; this.j("Owner"); } } WebRowSelectionEventArgsDetailDescription.$t = markType(WebRowSelectionEventArgsDetailDescription, 'WebRowSelectionEventArgsDetailDescription', Description.$); WebRowSelectionEventArgsDetailDescription.__marshalByValue = true; WebRowSelectionEventArgsDetailDescription.__marshalByValueAlias = "RowSelectionEventArgsDetail"; return WebRowSelectionEventArgsDetailDescription; })();