UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

75 lines (74 loc) 2.38 kB
/* 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 WebPositionSettingsDescription = /*@__PURE__*/ (() => { class WebPositionSettingsDescription extends Description { constructor() { super(); this.o = null; this.q = null; this.p = null; this.r = null; this.k = null; this.m = 0; } get_type() { return "WebPositionSettings"; } get type() { return this.get_type(); } get horizontalDirection() { return this.o; } set horizontalDirection(a) { this.o = a; this.j("HorizontalDirection"); } get verticalDirection() { return this.q; } set verticalDirection(a) { this.q = a; this.j("VerticalDirection"); } get horizontalStartPoint() { return this.p; } set horizontalStartPoint(a) { this.p = a; this.j("HorizontalStartPoint"); } get verticalStartPoint() { return this.r; } set verticalStartPoint(a) { this.r = a; this.j("VerticalStartPoint"); } get minSize() { return this.k; } set minSize(a) { this.k = a; this.j("MinSize"); } get offset() { return this.m; } set offset(a) { this.m = a; this.j("Offset"); } } WebPositionSettingsDescription.$t = markType(WebPositionSettingsDescription, 'WebPositionSettingsDescription', Description.$); return WebPositionSettingsDescription; })();