igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
172 lines (171 loc) • 5.45 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 { __extends } from "tslib";
import { WebDockManagerPaneDescription } from "./WebDockManagerPaneDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebSplitPaneDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebSplitPaneDescription, _super);
function WebSplitPaneDescription() {
var _this = _super.call(this) || this;
_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;
return _this;
}
WebSplitPaneDescription.prototype.get_type = function () {
return "WebSplitPane";
};
Object.defineProperty(WebSplitPaneDescription.prototype, "id", {
get: function () {
return this.ah;
},
set: function (a) {
this.ah = a;
this.j("Id");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSplitPaneDescription.prototype, "paneType", {
get: function () {
return this.aj;
},
set: function (a) {
this.aj = a;
this.j("PaneType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSplitPaneDescription.prototype, "orientation", {
get: function () {
return this.ai;
},
set: function (a) {
this.ai = a;
this.j("Orientation");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSplitPaneDescription.prototype, "panes", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("Panes");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSplitPaneDescription.prototype, "size", {
get: function () {
return this.ac;
},
set: function (a) {
this.ac = a;
this.j("Size");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSplitPaneDescription.prototype, "floatingLocation", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("FloatingLocation");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSplitPaneDescription.prototype, "floatingWidth", {
get: function () {
return this.ab;
},
set: function (a) {
this.ab = a;
this.j("FloatingWidth");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSplitPaneDescription.prototype, "floatingHeight", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.j("FloatingHeight");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSplitPaneDescription.prototype, "floatingResizable", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("FloatingResizable");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSplitPaneDescription.prototype, "allowEmpty", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("AllowEmpty");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSplitPaneDescription.prototype, "isMaximized", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("IsMaximized");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSplitPaneDescription.prototype, "useFixedSize", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("UseFixedSize");
},
enumerable: false,
configurable: true
});
WebSplitPaneDescription.$t = markType(WebSplitPaneDescription, 'WebSplitPaneDescription', WebDockManagerPaneDescription.$);
WebSplitPaneDescription.__marshalByValue1 = true;
WebSplitPaneDescription.__marshalByValueAlias1 = "SplitPane";
return WebSplitPaneDescription;
}(WebDockManagerPaneDescription));
export { WebSplitPaneDescription };