UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

58 lines (57 loc) 2.11 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 { WebCancelableEventArgsDetailDescription } from "./WebCancelableEventArgsDetailDescription"; import { markType } from "./type"; /** * @hidden */ export let WebPinRowEventArgsDetailDescription = /*@__PURE__*/ (() => { class WebPinRowEventArgsDetailDescription extends WebCancelableEventArgsDetailDescription { constructor() { super(); this.r = null; this.k = null; this.p = 0; this.n = false; } get_type() { return "WebPinRowEventArgsDetail"; } get rowID() { return this.r; } set rowID(a) { this.r = a; this.e("RowID"); } get row() { return this.k; } set row(a) { this.k = a; this.e("Row"); } get insertAtIndex() { return this.p; } set insertAtIndex(a) { this.p = a; this.e("InsertAtIndex"); } get isPinned() { return this.n; } set isPinned(a) { this.n = a; this.e("IsPinned"); } } WebPinRowEventArgsDetailDescription.$t = markType(WebPinRowEventArgsDetailDescription, 'WebPinRowEventArgsDetailDescription', WebCancelableEventArgsDetailDescription.$); WebPinRowEventArgsDetailDescription.__marshalByValue1 = true; WebPinRowEventArgsDetailDescription.__marshalByValueAlias1 = "PinRowEventArgsDetail"; return WebPinRowEventArgsDetailDescription; })();