igniteui-react-core
Version:
Ignite UI React Core.
40 lines (39 loc) • 1.65 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 TextCellInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(TextCellInfoDescription, _super);
function TextCellInfoDescription() {
var _this = _super.call(this) || this;
_this.fp = null;
return _this;
}
TextCellInfoDescription.prototype.get_type = function () {
return "TextCellInfo";
};
Object.defineProperty(TextCellInfoDescription.prototype, "textValue", {
get: function () {
return this.fp;
},
set: function (a) {
this.fp = a;
this.g("TextValue");
},
enumerable: false,
configurable: true
});
TextCellInfoDescription.$t = markType(TextCellInfoDescription, 'TextCellInfoDescription', CellInfoDescription.$);
TextCellInfoDescription.__marshalByValue1 = true;
TextCellInfoDescription.__marshalByValueAlias1 = "TextCellModel";
return TextCellInfoDescription;
}(CellInfoDescription));
export { TextCellInfoDescription };