igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
64 lines (63 loc) • 2.55 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.fm = null;
_this.fl = null;
_this.fn = null;
return _this;
}
SectionHeaderCellInfoDescription.prototype.get_type = function () {
return "SectionHeaderCellInfo";
};
Object.defineProperty(SectionHeaderCellInfoDescription.prototype, "resolvedText", {
get: function () {
return this.fm;
},
set: function (a) {
this.fm = a;
this.e("ResolvedText");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SectionHeaderCellInfoDescription.prototype, "resolvedSummaryText", {
get: function () {
return this.fl;
},
set: function (a) {
this.fl = a;
this.e("ResolvedSummaryText");
},
enumerable: false,
configurable: true
});
Object.defineProperty(SectionHeaderCellInfoDescription.prototype, "summaryDisplayMode", {
get: function () {
return this.fn;
},
set: function (a) {
this.fn = a;
this.e("SummaryDisplayMode");
},
enumerable: false,
configurable: true
});
SectionHeaderCellInfoDescription.$t = markType(SectionHeaderCellInfoDescription, 'SectionHeaderCellInfoDescription', CellInfoDescription.$);
SectionHeaderCellInfoDescription.__marshalByValue1 = true;
SectionHeaderCellInfoDescription.__marshalByValueAlias1 = "SectionHeaderCellModel";
return SectionHeaderCellInfoDescription;
}(CellInfoDescription));
export { SectionHeaderCellInfoDescription };