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.w = null; this.x = null; this.n = 0; this.o = 0; this.p = 0; this.k = false; this.j = false; this.v = null; this.u = null; this.t = null; this.h = null; } get_type() { return "DataAnnotationStyleEventArgs"; } get type() { return this.get_type(); } get shapeBrush() { return this.w; } set shapeBrush(a) { this.w = a; this.g("ShapeBrush"); } get shapeOutline() { return this.x; } set shapeOutline(a) { this.x = a; this.g("ShapeOutline"); } get shapeBrushOpacity() { return this.n; } set shapeBrushOpacity(a) { this.n = a; this.g("ShapeBrushOpacity"); } get shapeOutlineOpacity() { return this.o; } set shapeOutlineOpacity(a) { this.o = a; this.g("ShapeOutlineOpacity"); } get shapeThickness() { return this.p; } set shapeThickness(a) { this.p = a; this.g("ShapeThickness"); } get shapeVisible() { return this.k; } set shapeVisible(a) { this.k = a; this.g("ShapeVisible"); } get annotationVisible() { return this.j; } set annotationVisible(a) { this.j = a; this.g("AnnotationVisible"); } get labelStart() { return this.v; } set labelStart(a) { this.v = a; this.g("LabelStart"); } get labelEnd() { return this.u; } set labelEnd(a) { this.u = a; this.g("LabelEnd"); } get labelCenter() { return this.t; } set labelCenter(a) { this.t = a; this.g("LabelCenter"); } get overlay() { return this.h; } set overlay(a) { this.h = a; this.g("Overlay"); } } DataAnnotationStyleEventArgsDescription.$t = markType(DataAnnotationStyleEventArgsDescription, 'DataAnnotationStyleEventArgsDescription', Description.$); return DataAnnotationStyleEventArgsDescription; })();