igniteui-angular-inputs
Version:
Ignite UI Angular input components for building rich data visualizations for modern web apps.
38 lines (37 loc) • 1.4 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-angular-core";
import { StringBuilder } from "igniteui-angular-core";
/**
* @hidden
*/
export class ColorEditorVisualModelExport extends Base {
constructor() {
super(...arguments);
this.e = 0;
this.f = 0;
this.g = 0;
this.d = 0;
this.b = 0;
this.a = null;
this.c = false;
}
static { this.$t = markType(ColorEditorVisualModelExport, 'ColorEditorVisualModelExport'); }
h() {
let a = new StringBuilder(0);
a.m("{");
a.m("left : " + this.e + ", ");
a.m("top : " + this.f + ", ");
a.m("height : " + this.d + ", ");
a.m("width : " + this.g + ", ");
a.m("baseTheme : " + this.b + ", ");
a.m("value : " + this.a.serialize() + ", ");
a.m("isDisabled : " + this.c + ", ");
a.m("}");
return a.toString();
}
}