UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

115 lines (114 loc) 3.41 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 DataAnnotationStyleEventArgsDescription = /*@__PURE__*/ (() => { class DataAnnotationStyleEventArgsDescription extends Description { constructor() { super(); this.z = null; this.aa = null; this.q = 0; this.r = 0; this.s = 0; this.n = false; this.m = false; this.y = null; this.x = null; this.w = null; this.k = null; } get_type() { return "DataAnnotationStyleEventArgs"; } get type() { return this.get_type(); } get shapeBrush() { return this.z; } set shapeBrush(a) { this.z = a; this.j("ShapeBrush"); } get shapeOutline() { return this.aa; } set shapeOutline(a) { this.aa = a; this.j("ShapeOutline"); } get shapeBrushOpacity() { return this.q; } set shapeBrushOpacity(a) { this.q = a; this.j("ShapeBrushOpacity"); } get shapeOutlineOpacity() { return this.r; } set shapeOutlineOpacity(a) { this.r = a; this.j("ShapeOutlineOpacity"); } get shapeThickness() { return this.s; } set shapeThickness(a) { this.s = a; this.j("ShapeThickness"); } get shapeVisible() { return this.n; } set shapeVisible(a) { this.n = a; this.j("ShapeVisible"); } get annotationVisible() { return this.m; } set annotationVisible(a) { this.m = a; this.j("AnnotationVisible"); } get labelStart() { return this.y; } set labelStart(a) { this.y = a; this.j("LabelStart"); } get labelEnd() { return this.x; } set labelEnd(a) { this.x = a; this.j("LabelEnd"); } get labelCenter() { return this.w; } set labelCenter(a) { this.w = a; this.j("LabelCenter"); } get overlay() { return this.k; } set overlay(a) { this.k = a; this.j("Overlay"); } } DataAnnotationStyleEventArgsDescription.$t = markType(DataAnnotationStyleEventArgsDescription, 'DataAnnotationStyleEventArgsDescription', Description.$); return DataAnnotationStyleEventArgsDescription; })();