igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
100 lines (99 loc) • 3.68 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 { ColumnSortDescriptionDescription } from "./ColumnSortDescriptionDescription";
import { markType } from "./type";
/**
* @hidden
*/
var ColumnGroupDescriptionDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ColumnGroupDescriptionDescription, _super);
function ColumnGroupDescriptionDescription() {
var _this = _super.call(this) || this;
_this.aa = null;
_this.s = null;
_this.x = null;
_this.r = null;
_this.y = null;
_this.z = null;
return _this;
}
ColumnGroupDescriptionDescription.prototype.get_type = function () {
return "ColumnGroupDescription";
};
Object.defineProperty(ColumnGroupDescriptionDescription.prototype, "valueFormat", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.j("ValueFormat");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ColumnGroupDescriptionDescription.prototype, "valueFormatSpecifiers", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("ValueFormatSpecifiers");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ColumnGroupDescriptionDescription.prototype, "displayFormat", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.j("DisplayFormat");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ColumnGroupDescriptionDescription.prototype, "displayFormatSpecifiers", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("DisplayFormatSpecifiers");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ColumnGroupDescriptionDescription.prototype, "displayName", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("DisplayName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ColumnGroupDescriptionDescription.prototype, "formatTextRef", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.j("FormatTextRef");
},
enumerable: false,
configurable: true
});
ColumnGroupDescriptionDescription.$t = markType(ColumnGroupDescriptionDescription, 'ColumnGroupDescriptionDescription', ColumnSortDescriptionDescription.$);
ColumnGroupDescriptionDescription.__marshalByValue1 = true;
ColumnGroupDescriptionDescription.__marshalByValueAlias1 = "ColumnGroupDescription";
return ColumnGroupDescriptionDescription;
}(ColumnSortDescriptionDescription));
export { ColumnGroupDescriptionDescription };