igniteui-react-core
Version:
Ignite UI React Core.
122 lines (121 loc) • 4.26 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 { DataAnnotationRangeLayerDescription } from "./DataAnnotationRangeLayerDescription";
import { markType } from "./type";
/**
* @hidden
*/
var DataAnnotationStripLayerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DataAnnotationStripLayerDescription, _super);
function DataAnnotationStripLayerDescription() {
var _this = _super.call(this) || this;
_this.kc = null;
_this.kb = null;
_this.ka = null;
_this.j9 = null;
_this.j8 = null;
_this.j7 = null;
_this.j6 = null;
_this.j5 = null;
return _this;
}
DataAnnotationStripLayerDescription.prototype.get_type = function () {
return "DataAnnotationStripLayer";
};
Object.defineProperty(DataAnnotationStripLayerDescription.prototype, "startValueMemberPath", {
get: function () {
return this.kc;
},
set: function (a) {
this.kc = a;
this.g("StartValueMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationStripLayerDescription.prototype, "startLabelMemberPath", {
get: function () {
return this.kb;
},
set: function (a) {
this.kb = a;
this.g("StartLabelMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationStripLayerDescription.prototype, "startLabelDisplayMode", {
get: function () {
return this.ka;
},
set: function (a) {
this.ka = a;
this.g("StartLabelDisplayMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationStripLayerDescription.prototype, "endValueMemberPath", {
get: function () {
return this.j9;
},
set: function (a) {
this.j9 = a;
this.g("EndValueMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationStripLayerDescription.prototype, "endLabelMemberPath", {
get: function () {
return this.j8;
},
set: function (a) {
this.j8 = a;
this.g("EndLabelMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationStripLayerDescription.prototype, "endLabelDisplayMode", {
get: function () {
return this.j7;
},
set: function (a) {
this.j7 = a;
this.g("EndLabelDisplayMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationStripLayerDescription.prototype, "centerLabelMemberPath", {
get: function () {
return this.j6;
},
set: function (a) {
this.j6 = a;
this.g("CenterLabelMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataAnnotationStripLayerDescription.prototype, "centerLabelDisplayMode", {
get: function () {
return this.j5;
},
set: function (a) {
this.j5 = a;
this.g("CenterLabelDisplayMode");
},
enumerable: false,
configurable: true
});
DataAnnotationStripLayerDescription.$t = markType(DataAnnotationStripLayerDescription, 'DataAnnotationStripLayerDescription', DataAnnotationRangeLayerDescription.$);
return DataAnnotationStripLayerDescription;
}(DataAnnotationRangeLayerDescription));
export { DataAnnotationStripLayerDescription };