UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

58 lines (57 loc) 2 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 { WebPaneDragActionDescription } from "./WebPaneDragActionDescription"; import { markType } from "./type"; /** * @hidden */ export let WebFloatPaneActionDescription = /*@__PURE__*/ (() => { class WebFloatPaneActionDescription extends WebPaneDragActionDescription { constructor() { super(); this.v = null; this.n = null; this.r = 0; this.q = 0; } get_type() { return "WebFloatPaneAction"; } get actionType() { return this.v; } set actionType(a) { this.v = a; this.j("ActionType"); } get location() { return this.n; } set location(a) { this.n = a; this.j("Location"); } get width() { return this.r; } set width(a) { this.r = a; this.j("Width"); } get height() { return this.q; } set height(a) { this.q = a; this.j("Height"); } } WebFloatPaneActionDescription.$t = markType(WebFloatPaneActionDescription, 'WebFloatPaneActionDescription', WebPaneDragActionDescription.$); WebFloatPaneActionDescription.__marshalByValue1 = true; WebFloatPaneActionDescription.__marshalByValueAlias1 = "FloatPaneAction"; return WebFloatPaneActionDescription; })();