UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

61 lines (60 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let WebPanePinnedEventArgsDetailDescription = /*@__PURE__*/ (() => { class WebPanePinnedEventArgsDetailDescription extends Description { constructor() { super(); this.m = null; this.k = null; this.p = false; this.s = null; } get_type() { return "WebPanePinnedEventArgsDetail"; } get type() { return this.get_type(); } get sourcePane() { return this.m; } set sourcePane(a) { this.m = a; this.j("SourcePane"); } get panes() { return this.k; } set panes(a) { this.k = a; this.j("Panes"); } get newValue() { return this.p; } set newValue(a) { this.p = a; this.j("NewValue"); } get location() { return this.s; } set location(a) { this.s = a; this.j("Location"); } } WebPanePinnedEventArgsDetailDescription.$t = markType(WebPanePinnedEventArgsDetailDescription, 'WebPanePinnedEventArgsDetailDescription', Description.$); WebPanePinnedEventArgsDetailDescription.__marshalByValue = true; WebPanePinnedEventArgsDetailDescription.__marshalByValueAlias = "PanePinnedEventArgsDetail"; return WebPanePinnedEventArgsDetailDescription; })();