UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

38 lines (37 loc) 1.6 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 GridVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) { __extends(GridVisualModelExport, _super); function GridVisualModelExport() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.b = 0; _this.c = 0; _this.d = 0; _this.a = 0; return _this; } GridVisualModelExport.prototype.serialize = function () { var a = new StringBuilder(0); a.l("{"); a.l("left : " + this.b + ", "); a.l("top : " + this.c + ", "); a.l("height : " + this.a + ", "); a.l("width : " + this.d + ", "); a.l("}"); return a.toString(); }; GridVisualModelExport.$t = markType(GridVisualModelExport, 'GridVisualModelExport', Base.$, [IVisualData_$type]); return GridVisualModelExport; }(Base)); export { GridVisualModelExport };