UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

122 lines (121 loc) 3.56 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 { WebDockManagerPaneDescription } from "./WebDockManagerPaneDescription"; import { markType } from "./type"; /** * @hidden */ export let WebSplitPaneDescription = /*@__PURE__*/ (() => { class WebSplitPaneDescription extends WebDockManagerPaneDescription { constructor() { super(); this.ah = null; this.aj = null; this.ai = null; this.n = null; this.ac = 0; this.p = null; this.ab = 0; this.aa = 0; this.t = false; this.s = false; this.u = false; this.v = false; } get_type() { return "WebSplitPane"; } get id() { return this.ah; } set id(a) { this.ah = a; this.j("Id"); } get paneType() { return this.aj; } set paneType(a) { this.aj = a; this.j("PaneType"); } get orientation() { return this.ai; } set orientation(a) { this.ai = a; this.j("Orientation"); } get panes() { return this.n; } set panes(a) { this.n = a; this.j("Panes"); } get size() { return this.ac; } set size(a) { this.ac = a; this.j("Size"); } get floatingLocation() { return this.p; } set floatingLocation(a) { this.p = a; this.j("FloatingLocation"); } get floatingWidth() { return this.ab; } set floatingWidth(a) { this.ab = a; this.j("FloatingWidth"); } get floatingHeight() { return this.aa; } set floatingHeight(a) { this.aa = a; this.j("FloatingHeight"); } get floatingResizable() { return this.t; } set floatingResizable(a) { this.t = a; this.j("FloatingResizable"); } get allowEmpty() { return this.s; } set allowEmpty(a) { this.s = a; this.j("AllowEmpty"); } get isMaximized() { return this.u; } set isMaximized(a) { this.u = a; this.j("IsMaximized"); } get useFixedSize() { return this.v; } set useFixedSize(a) { this.v = a; this.j("UseFixedSize"); } } WebSplitPaneDescription.$t = markType(WebSplitPaneDescription, 'WebSplitPaneDescription', WebDockManagerPaneDescription.$); WebSplitPaneDescription.__marshalByValue1 = true; WebSplitPaneDescription.__marshalByValueAlias1 = "SplitPane"; return WebSplitPaneDescription; })();