igniteui-react-core
Version:
Ignite UI React Core.
64 lines (63 loc) • 2.49 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 { CellInfoDescription } from "./CellInfoDescription";
import { markType } from "./type";
/**
* @hidden
*/
var SectionHeaderCellInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(SectionHeaderCellInfoDescription, _super);
function SectionHeaderCellInfoDescription() {
var _this = _super.call(this) || this;
_this.fq = null;
_this.fp = null;
_this.fr = null;
return _this;
}
SectionHeaderCellInfoDescription.prototype.get_type = function () {
return "SectionHeaderCellInfo";
};
Object.defineProperty(SectionHeaderCellInfoDescription.prototype, "resolvedText", {
get: function () {
return this.fq;
},
set: function (a) {
this.fq = a;
this.g("ResolvedText");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SectionHeaderCellInfoDescription.prototype, "resolvedSummaryText", {
get: function () {
return this.fp;
},
set: function (a) {
this.fp = a;
this.g("ResolvedSummaryText");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SectionHeaderCellInfoDescription.prototype, "summaryDisplayMode", {
get: function () {
return this.fr;
},
set: function (a) {
this.fr = a;
this.g("SummaryDisplayMode");
},
enumerable: false,
configurable: true
});
SectionHeaderCellInfoDescription.$t = markType(SectionHeaderCellInfoDescription, 'SectionHeaderCellInfoDescription', CellInfoDescription.$);
SectionHeaderCellInfoDescription.__marshalByValue1 = true;
SectionHeaderCellInfoDescription.__marshalByValueAlias1 = "SectionHeaderCellModel";
return SectionHeaderCellInfoDescription;
}(CellInfoDescription));
export { SectionHeaderCellInfoDescription };