igniteui-webcomponents-inputs
Version:
Ignite UI Web Components inputs components.
43 lines (42 loc) • 1.8 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 { Base, markType } from "igniteui-webcomponents-core";
import { StringBuilder } from "igniteui-webcomponents-core";
let TextElementsVisualModelExport = /*@__PURE__*/ (() => {
class TextElementsVisualModelExport extends Base {
constructor() {
super(...arguments);
this.e = 0;
this.d = 0;
this.c = 0;
this.f = 0;
this.g = null;
this.b = null;
this.a = null;
}
h() {
let 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();
}
}
TextElementsVisualModelExport.$t = /*@__PURE__*/ markType(TextElementsVisualModelExport, 'TextElementsVisualModelExport');
return TextElementsVisualModelExport;
})();
export { TextElementsVisualModelExport };