igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
139 lines (138 loc) • 3.97 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 WebTileManagerDescription = /*@__PURE__*/ (() => {
class WebTileManagerDescription extends Description {
constructor() {
super();
this.q = null;
this.m = null;
this.k = 0;
this.o = null;
this.p = null;
this.n = null;
this.u = null;
this.v = null;
this.t = null;
this.s = null;
this.r = null;
this.y = null;
this.x = null;
this.w = null;
}
get_type() {
return "WebTileManager";
}
get type() {
return this.get_type();
}
get resizeMode() {
return this.q;
}
set resizeMode(a) {
this.q = a;
this.j("ResizeMode");
}
get dragMode() {
return this.m;
}
set dragMode(a) {
this.m = a;
this.j("DragMode");
}
get columnCount() {
return this.k;
}
set columnCount(a) {
this.k = a;
this.j("ColumnCount");
}
get minColumnWidth() {
return this.o;
}
set minColumnWidth(a) {
this.o = a;
this.j("MinColumnWidth");
}
get minRowHeight() {
return this.p;
}
set minRowHeight(a) {
this.p = a;
this.j("MinRowHeight");
}
get gap() {
return this.n;
}
set gap(a) {
this.n = a;
this.j("Gap");
}
get tileFullscreenRef() {
return this.u;
}
set tileFullscreenRef(a) {
this.u = a;
this.j("TileFullscreenRef");
}
get tileMaximizeRef() {
return this.v;
}
set tileMaximizeRef(a) {
this.v = a;
this.j("TileMaximizeRef");
}
get tileDragStartRef() {
return this.t;
}
set tileDragStartRef(a) {
this.t = a;
this.j("TileDragStartRef");
}
get tileDragEndRef() {
return this.s;
}
set tileDragEndRef(a) {
this.s = a;
this.j("TileDragEndRef");
}
get tileDragCancelRef() {
return this.r;
}
set tileDragCancelRef(a) {
this.r = a;
this.j("TileDragCancelRef");
}
get tileResizeStartRef() {
return this.y;
}
set tileResizeStartRef(a) {
this.y = a;
this.j("TileResizeStartRef");
}
get tileResizeEndRef() {
return this.x;
}
set tileResizeEndRef(a) {
this.x = a;
this.j("TileResizeEndRef");
}
get tileResizeCancelRef() {
return this.w;
}
set tileResizeCancelRef(a) {
this.w = a;
this.j("TileResizeCancelRef");
}
}
WebTileManagerDescription.$t = markType(WebTileManagerDescription, 'WebTileManagerDescription', Description.$);
return WebTileManagerDescription;
})();