UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

165 lines (164 loc) 5.52 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 { __extends } from "tslib"; import { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var DataAnnotationStyleEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DataAnnotationStyleEventArgsDescription, _super); function DataAnnotationStyleEventArgsDescription() { var _this = _super.call(this) || this; _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; return _this; } DataAnnotationStyleEventArgsDescription.prototype.get_type = function () { return "DataAnnotationStyleEventArgs"; }; Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "shapeBrush", { get: function () { return this.z; }, set: function (a) { this.z = a; this.j("ShapeBrush"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "shapeOutline", { get: function () { return this.aa; }, set: function (a) { this.aa = a; this.j("ShapeOutline"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "shapeBrushOpacity", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("ShapeBrushOpacity"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "shapeOutlineOpacity", { get: function () { return this.r; }, set: function (a) { this.r = a; this.j("ShapeOutlineOpacity"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "shapeThickness", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("ShapeThickness"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "shapeVisible", { get: function () { return this.n; }, set: function (a) { this.n = a; this.j("ShapeVisible"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "annotationVisible", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("AnnotationVisible"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "labelStart", { get: function () { return this.y; }, set: function (a) { this.y = a; this.j("LabelStart"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "labelEnd", { get: function () { return this.x; }, set: function (a) { this.x = a; this.j("LabelEnd"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "labelCenter", { get: function () { return this.w; }, set: function (a) { this.w = a; this.j("LabelCenter"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "overlay", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("Overlay"); }, enumerable: false, configurable: true }); DataAnnotationStyleEventArgsDescription.$t = markType(DataAnnotationStyleEventArgsDescription, 'DataAnnotationStyleEventArgsDescription', Description.$); return DataAnnotationStyleEventArgsDescription; }(Description)); export { DataAnnotationStyleEventArgsDescription };