igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
225 lines (224 loc) • 6.99 kB
JavaScript
/*
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 DataAnnotationItemDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DataAnnotationItemDescription, _super);
function DataAnnotationItemDescription() {
var _this = _super.call(this) || this;
_this.y = 0;
_this.ag = null;
_this.ah = null;
_this.ac = null;
_this.ad = null;
_this.ab = null;
_this.aa = null;
_this.o = 0;
_this.p = 0;
_this.m = 0;
_this.n = 0;
_this.k = 0;
_this.l = 0;
_this.ae = null;
_this.af = null;
_this.q = 0;
return _this;
}
DataAnnotationItemDescription.prototype.get_type = function () {
return "DataAnnotationItem";
};
Object.defineProperty(DataAnnotationItemDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "dataIndex", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("DataIndex");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "startLabelX", {
get: function () {
return this.ag;
},
set: function (a) {
this.ag = a;
this.j("StartLabelX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "startLabelY", {
get: function () {
return this.ah;
},
set: function (a) {
this.ah = a;
this.j("StartLabelY");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "endLabelX", {
get: function () {
return this.ac;
},
set: function (a) {
this.ac = a;
this.j("EndLabelX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "endLabelY", {
get: function () {
return this.ad;
},
set: function (a) {
this.ad = a;
this.j("EndLabelY");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "centerLabelY", {
get: function () {
return this.ab;
},
set: function (a) {
this.ab = a;
this.j("CenterLabelY");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "centerLabelX", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.j("CenterLabelX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeStartX", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("ShapeStartX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeStartY", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("ShapeStartY");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeEndX", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("ShapeEndX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeEndY", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("ShapeEndY");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeCenterX", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("ShapeCenterX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeCenterY", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("ShapeCenterY");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeBrush", {
get: function () {
return this.ae;
},
set: function (a) {
this.ae = a;
this.j("ShapeBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeOutline", {
get: function () {
return this.af;
},
set: function (a) {
this.af = a;
this.j("ShapeOutline");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeThickness", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("ShapeThickness");
},
enumerable: false,
configurable: true
});
DataAnnotationItemDescription.$t = markType(DataAnnotationItemDescription, 'DataAnnotationItemDescription', Description.$);
return DataAnnotationItemDescription;
}(Description));
export { DataAnnotationItemDescription };