igniteui-react-core
Version:
Ignite UI React Core.
225 lines (224 loc) • 6.75 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.v = 0;
_this.ad = null;
_this.ae = null;
_this.z = null;
_this.aa = null;
_this.y = null;
_this.x = null;
_this.l = 0;
_this.m = 0;
_this.j = 0;
_this.k = 0;
_this.h = 0;
_this.i = 0;
_this.ab = null;
_this.ac = null;
_this.n = 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.v;
},
set: function (a) {
this.v = a;
this.g("DataIndex");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "startLabelX", {
get: function () {
return this.ad;
},
set: function (a) {
this.ad = a;
this.g("StartLabelX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "startLabelY", {
get: function () {
return this.ae;
},
set: function (a) {
this.ae = a;
this.g("StartLabelY");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "endLabelX", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.g("EndLabelX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "endLabelY", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.g("EndLabelY");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "centerLabelY", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.g("CenterLabelY");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "centerLabelX", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.g("CenterLabelX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeStartX", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.g("ShapeStartX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeStartY", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.g("ShapeStartY");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeEndX", {
get: function () {
return this.j;
},
set: function (a) {
this.j = a;
this.g("ShapeEndX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeEndY", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.g("ShapeEndY");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeCenterX", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
this.g("ShapeCenterX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeCenterY", {
get: function () {
return this.i;
},
set: function (a) {
this.i = a;
this.g("ShapeCenterY");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeBrush", {
get: function () {
return this.ab;
},
set: function (a) {
this.ab = a;
this.g("ShapeBrush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeOutline", {
get: function () {
return this.ac;
},
set: function (a) {
this.ac = a;
this.g("ShapeOutline");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationItemDescription.prototype, "shapeThickness", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.g("ShapeThickness");
},
enumerable: false,
configurable: true
});
DataAnnotationItemDescription.$t = markType(DataAnnotationItemDescription, 'DataAnnotationItemDescription', Description.$);
return DataAnnotationItemDescription;
}(Description));
export { DataAnnotationItemDescription };