UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

85 lines (84 loc) 2.61 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 WebPinRowEventArgsDetailDescription = /*@__PURE__*/ (() => { class WebPinRowEventArgsDetailDescription extends Description { constructor() { super(); this.u = null; this.v = null; this.k = null; this.r = 0; this.o = false; this.t = null; this.n = false; } get_type() { return "WebPinRowEventArgsDetail"; } get type() { return this.get_type(); } 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 row() { return this.k; } set row(a) { this.k = a; this.j("Row"); } get insertAtIndex() { return this.r; } set insertAtIndex(a) { this.r = a; this.j("InsertAtIndex"); } get isPinned() { return this.o; } set isPinned(a) { this.o = a; this.j("IsPinned"); } get owner() { return this.t; } set owner(a) { this.t = a; this.j("Owner"); } get cancel() { return this.n; } set cancel(a) { this.n = a; this.j("Cancel"); } } WebPinRowEventArgsDetailDescription.$t = markType(WebPinRowEventArgsDetailDescription, 'WebPinRowEventArgsDetailDescription', Description.$); WebPinRowEventArgsDetailDescription.__marshalByValue = true; WebPinRowEventArgsDetailDescription.__marshalByValueAlias = "PinRowEventArgsDetail"; return WebPinRowEventArgsDetailDescription; })();