UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

42 lines (41 loc) 1.77 kB
/* 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 "./type"; import { IVisualData_$type } from "./IVisualData"; import { StringBuilder } from "./StringBuilder"; /** * @hidden */ var LabelVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) { __extends(LabelVisualModelExport, _super); function LabelVisualModelExport() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.c = 0; _this.d = 0; _this.e = 0; _this.b = 0; _this.f = null; _this.a = false; return _this; } LabelVisualModelExport.prototype.serialize = function () { var a = new StringBuilder(0); a.l("{"); a.l("left : " + this.c + ", "); a.l("top : " + this.d + ", "); a.l("height : " + this.b + ", "); a.l("width : " + this.e + ", "); a.l("text : " + this.f + ", "); a.l("isWrapEnabled : " + this.a.toString() + ", "); a.l("}"); return a.toString(); }; LabelVisualModelExport.$t = markType(LabelVisualModelExport, 'LabelVisualModelExport', Base.$, [IVisualData_$type]); return LabelVisualModelExport; }(Base)); export { LabelVisualModelExport };