igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
106 lines (105 loc) • 3.14 kB
JavaScript
/*
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.w = null;
this.y = null;
this.x = null;
this.g = null;
this.r = 0;
this.i = null;
this.q = 0;
this.p = 0;
this.m = false;
this.l = false;
}
get_type() {
return "WebSplitPane";
}
get id() {
return this.w;
}
set id(a) {
this.w = a;
this.e("Id");
}
get paneType() {
return this.y;
}
set paneType(a) {
this.y = a;
this.e("PaneType");
}
get orientation() {
return this.x;
}
set orientation(a) {
this.x = a;
this.e("Orientation");
}
get panes() {
return this.g;
}
set panes(a) {
this.g = a;
this.e("Panes");
}
get size() {
return this.r;
}
set size(a) {
this.r = a;
this.e("Size");
}
get floatingLocation() {
return this.i;
}
set floatingLocation(a) {
this.i = a;
this.e("FloatingLocation");
}
get floatingWidth() {
return this.q;
}
set floatingWidth(a) {
this.q = a;
this.e("FloatingWidth");
}
get floatingHeight() {
return this.p;
}
set floatingHeight(a) {
this.p = a;
this.e("FloatingHeight");
}
get floatingResizable() {
return this.m;
}
set floatingResizable(a) {
this.m = a;
this.e("FloatingResizable");
}
get allowEmpty() {
return this.l;
}
set allowEmpty(a) {
this.l = a;
this.e("AllowEmpty");
}
}
WebSplitPaneDescription.$t = markType(WebSplitPaneDescription, 'WebSplitPaneDescription', WebDockManagerPaneDescription.$);
WebSplitPaneDescription.__marshalByValue = true;
WebSplitPaneDescription.__marshalByValueAlias = "SplitPane";
return WebSplitPaneDescription;
})();