igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
163 lines (162 loc) • 4.53 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 {
constructor() {
super();
this.s = 0;
this.v = 0;
this.t = 0;
this.w = 0;
this.n = false;
this.m = false;
this.k = false;
this.l = false;
this.u = 0;
this.af = null;
this.ag = null;
this.ae = null;
this.ad = null;
this.ac = null;
this.aj = null;
this.ai = null;
this.ah = null;
}
get_type() {
return "WebTile";
}
get type() {
return this.get_type();
}
get colSpan() {
return this.s;
}
set colSpan(a) {
this.s = a;
this.j("ColSpan");
}
get rowSpan() {
return this.v;
}
set rowSpan(a) {
this.v = a;
this.j("RowSpan");
}
get colStart() {
return this.t;
}
set colStart(a) {
this.t = a;
this.j("ColStart");
}
get rowStart() {
return this.w;
}
set rowStart(a) {
this.w = a;
this.j("RowStart");
}
get maximized() {
return this.n;
}
set maximized(a) {
this.n = a;
this.j("Maximized");
}
get disableResize() {
return this.m;
}
set disableResize(a) {
this.m = a;
this.j("DisableResize");
}
get disableFullscreen() {
return this.k;
}
set disableFullscreen(a) {
this.k = a;
this.j("DisableFullscreen");
}
get disableMaximize() {
return this.l;
}
set disableMaximize(a) {
this.l = a;
this.j("DisableMaximize");
}
get position() {
return this.u;
}
set position(a) {
this.u = a;
this.j("Position");
}
get tileFullscreenRef() {
return this.af;
}
set tileFullscreenRef(a) {
this.af = a;
this.j("TileFullscreenRef");
}
get tileMaximizeRef() {
return this.ag;
}
set tileMaximizeRef(a) {
this.ag = a;
this.j("TileMaximizeRef");
}
get tileDragStartRef() {
return this.ae;
}
set tileDragStartRef(a) {
this.ae = a;
this.j("TileDragStartRef");
}
get tileDragEndRef() {
return this.ad;
}
set tileDragEndRef(a) {
this.ad = a;
this.j("TileDragEndRef");
}
get tileDragCancelRef() {
return this.ac;
}
set tileDragCancelRef(a) {
this.ac = a;
this.j("TileDragCancelRef");
}
get tileResizeStartRef() {
return this.aj;
}
set tileResizeStartRef(a) {
this.aj = a;
this.j("TileResizeStartRef");
}
get tileResizeEndRef() {
return this.ai;
}
set tileResizeEndRef(a) {
this.ai = a;
this.j("TileResizeEndRef");
}
get tileResizeCancelRef() {
return this.ah;
}
set tileResizeCancelRef(a) {
this.ah = a;
this.j("TileResizeCancelRef");
}
}
WebTileDescription.$t = markType(WebTileDescription, 'WebTileDescription', Description.$);
return WebTileDescription;
})();