igniteui-react-core
Version:
Ignite UI React Core.
163 lines (162 loc) • 4.38 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let WebTileDescription = /*@__PURE__*/ (() => {
class WebTileDescription extends Description {
get_type() {
return "WebTile";
}
get type() {
return this.get_type();
}
constructor() {
super();
this.p = 0;
this.s = 0;
this.q = 0;
this.t = 0;
this.k = false;
this.j = false;
this.h = false;
this.i = false;
this.r = 0;
this.ac = null;
this.ad = null;
this.ab = null;
this.aa = null;
this.z = null;
this.ag = null;
this.af = null;
this.ae = null;
}
get colSpan() {
return this.p;
}
set colSpan(a) {
this.p = a;
this.g("ColSpan");
}
get rowSpan() {
return this.s;
}
set rowSpan(a) {
this.s = a;
this.g("RowSpan");
}
get colStart() {
return this.q;
}
set colStart(a) {
this.q = a;
this.g("ColStart");
}
get rowStart() {
return this.t;
}
set rowStart(a) {
this.t = a;
this.g("RowStart");
}
get maximized() {
return this.k;
}
set maximized(a) {
this.k = a;
this.g("Maximized");
}
get disableResize() {
return this.j;
}
set disableResize(a) {
this.j = a;
this.g("DisableResize");
}
get disableFullscreen() {
return this.h;
}
set disableFullscreen(a) {
this.h = a;
this.g("DisableFullscreen");
}
get disableMaximize() {
return this.i;
}
set disableMaximize(a) {
this.i = a;
this.g("DisableMaximize");
}
get position() {
return this.r;
}
set position(a) {
this.r = a;
this.g("Position");
}
get tileFullscreenRef() {
return this.ac;
}
set tileFullscreenRef(a) {
this.ac = a;
this.g("TileFullscreenRef");
}
get tileMaximizeRef() {
return this.ad;
}
set tileMaximizeRef(a) {
this.ad = a;
this.g("TileMaximizeRef");
}
get tileDragStartRef() {
return this.ab;
}
set tileDragStartRef(a) {
this.ab = a;
this.g("TileDragStartRef");
}
get tileDragEndRef() {
return this.aa;
}
set tileDragEndRef(a) {
this.aa = a;
this.g("TileDragEndRef");
}
get tileDragCancelRef() {
return this.z;
}
set tileDragCancelRef(a) {
this.z = a;
this.g("TileDragCancelRef");
}
get tileResizeStartRef() {
return this.ag;
}
set tileResizeStartRef(a) {
this.ag = a;
this.g("TileResizeStartRef");
}
get tileResizeEndRef() {
return this.af;
}
set tileResizeEndRef(a) {
this.af = a;
this.g("TileResizeEndRef");
}
get tileResizeCancelRef() {
return this.ae;
}
set tileResizeCancelRef(a) {
this.ae = a;
this.g("TileResizeCancelRef");
}
}
WebTileDescription.$t = /*@__PURE__*/ markType(WebTileDescription, 'WebTileDescription', Description.$);
return WebTileDescription;
})();