UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

131 lines (130 loc) 4.57 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 UserAnnotationInformationDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(UserAnnotationInformationDescription, _super); function UserAnnotationInformationDescription() { var _this = _super.call(this) || this; _this.r = null; _this.u = null; _this.s = null; _this.v = null; _this.q = null; _this.t = null; _this.l = 0; _this.m = 0; return _this; } UserAnnotationInformationDescription.prototype.get_type = function () { return "UserAnnotationInformation"; }; Object.defineProperty(UserAnnotationInformationDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(UserAnnotationInformationDescription.prototype, "annotationId", { get: function () { return this.r; }, set: function (a) { this.r = a; this.j("AnnotationId"); }, enumerable: false, configurable: true }); Object.defineProperty(UserAnnotationInformationDescription.prototype, "label", { get: function () { return this.u; }, set: function (a) { this.u = a; this.j("Label"); }, enumerable: false, configurable: true }); Object.defineProperty(UserAnnotationInformationDescription.prototype, "badgeColor", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("BadgeColor"); }, enumerable: false, configurable: true }); Object.defineProperty(UserAnnotationInformationDescription.prototype, "mainColor", { get: function () { return this.v; }, set: function (a) { this.v = a; this.j("MainColor"); }, enumerable: false, configurable: true }); Object.defineProperty(UserAnnotationInformationDescription.prototype, "annotationData", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("AnnotationData"); }, enumerable: false, configurable: true }); Object.defineProperty(UserAnnotationInformationDescription.prototype, "badgeImageUri", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("BadgeImageUri"); }, enumerable: false, configurable: true }); Object.defineProperty(UserAnnotationInformationDescription.prototype, "dialogSuggestedXLocation", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("DialogSuggestedXLocation"); }, enumerable: false, configurable: true }); Object.defineProperty(UserAnnotationInformationDescription.prototype, "dialogSuggestedYLocation", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("DialogSuggestedYLocation"); }, enumerable: false, configurable: true }); UserAnnotationInformationDescription.$t = markType(UserAnnotationInformationDescription, 'UserAnnotationInformationDescription', Description.$); UserAnnotationInformationDescription.__marshalByValue = true; UserAnnotationInformationDescription.__marshalByValueAlias = "UserAnnotationInformation"; return UserAnnotationInformationDescription; }(Description)); export { UserAnnotationInformationDescription };