igniteui-react-grids
Version:
Ignite UI React grid components.
47 lines (46 loc) • 1.83 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 { Base, markType } from "igniteui-react-core";
import { StringBuilder } from "igniteui-react-core";
/**
* @hidden
*/
var TextVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(TextVisualModelExport, _super);
function TextVisualModelExport() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.e = 0;
_this.d = 0;
_this.c = 0;
_this.f = 0;
_this.g = null;
_this.b = null;
_this.a = null;
return _this;
}
TextVisualModelExport.prototype.h = function () {
var a = new StringBuilder(0);
a.l("{");
a.l("top : " + this.e + ", ");
a.l("left : " + this.d + ", ");
a.l("height : " + this.c + ", ");
a.l("width : " + this.f + ", ");
if (this.g != null) {
a.l("value : \"" + this.g.toString() + "\", ");
}
a.l("textColor : " + this.b.serialize() + ", ");
if (this.a != null) {
a.l("borderColor : " + this.a.serialize() + ", ");
}
a.l("}");
return a.toString();
};
TextVisualModelExport.$t = markType(TextVisualModelExport, 'TextVisualModelExport');
return TextVisualModelExport;
}(Base));
export { TextVisualModelExport };