UNPKG

igniteui-react-core

Version:
165 lines (164 loc) 5.35 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.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; 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.w; }, set: function (a) { this.w = a; this.g("ShapeBrush"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "shapeOutline", { get: function () { return this.x; }, set: function (a) { this.x = a; this.g("ShapeOutline"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "shapeBrushOpacity", { get: function () { return this.n; }, set: function (a) { this.n = a; this.g("ShapeBrushOpacity"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "shapeOutlineOpacity", { get: function () { return this.o; }, set: function (a) { this.o = a; this.g("ShapeOutlineOpacity"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "shapeThickness", { get: function () { return this.p; }, set: function (a) { this.p = a; this.g("ShapeThickness"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "shapeVisible", { get: function () { return this.k; }, set: function (a) { this.k = a; this.g("ShapeVisible"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "annotationVisible", { get: function () { return this.j; }, set: function (a) { this.j = a; this.g("AnnotationVisible"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "labelStart", { get: function () { return this.v; }, set: function (a) { this.v = a; this.g("LabelStart"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "labelEnd", { get: function () { return this.u; }, set: function (a) { this.u = a; this.g("LabelEnd"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "labelCenter", { get: function () { return this.t; }, set: function (a) { this.t = a; this.g("LabelCenter"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationStyleEventArgsDescription.prototype, "overlay", { get: function () { return this.h; }, set: function (a) { this.h = a; this.g("Overlay"); }, enumerable: false, configurable: true }); DataAnnotationStyleEventArgsDescription.$t = markType(DataAnnotationStyleEventArgsDescription, 'DataAnnotationStyleEventArgsDescription', Description.$); return DataAnnotationStyleEventArgsDescription; }(Description)); export { DataAnnotationStyleEventArgsDescription };