UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

74 lines (73 loc) 2.7 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 { WebFloatingPaneResizeEventArgsDetailDescription } from "./WebFloatingPaneResizeEventArgsDetailDescription"; import { markType } from "./type"; /** * @hidden */ export let WebFloatingPaneResizeMoveEventArgsDetailDescription = /*@__PURE__*/ (() => { class WebFloatingPaneResizeMoveEventArgsDetailDescription extends WebFloatingPaneResizeEventArgsDetailDescription { constructor() { super(); this.z = 0; this.x = 0; this.y = 0; this.w = 0; this.s = null; this.r = null; } get_type() { return "WebFloatingPaneResizeMoveEventArgsDetail"; } get oldWidth() { return this.z; } set oldWidth(a) { this.z = a; this.j("OldWidth"); } get newWidth() { return this.x; } set newWidth(a) { this.x = a; this.j("NewWidth"); } get oldHeight() { return this.y; } set oldHeight(a) { this.y = a; this.j("OldHeight"); } get newHeight() { return this.w; } set newHeight(a) { this.w = a; this.j("NewHeight"); } get oldLocation() { return this.s; } set oldLocation(a) { this.s = a; this.j("OldLocation"); } get newLocation() { return this.r; } set newLocation(a) { this.r = a; this.j("NewLocation"); } } WebFloatingPaneResizeMoveEventArgsDetailDescription.$t = markType(WebFloatingPaneResizeMoveEventArgsDetailDescription, 'WebFloatingPaneResizeMoveEventArgsDetailDescription', WebFloatingPaneResizeEventArgsDetailDescription.$); WebFloatingPaneResizeMoveEventArgsDetailDescription.__marshalByValue1 = true; WebFloatingPaneResizeMoveEventArgsDetailDescription.__marshalByValueAlias1 = "FloatingPaneResizeMoveEventArgsDetail"; return WebFloatingPaneResizeMoveEventArgsDetailDescription; })();