UNPKG

igniteui-angular-inputs

Version:

Ignite UI Angular input components for building rich data visualizations for modern web apps.

68 lines (67 loc) 2.52 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 { Base, markType } from "igniteui-angular-core"; import { StringBuilder } from "igniteui-angular-core"; /** * @hidden */ export class CheckboxVisualModelExport extends Base { constructor() { super(...arguments); this.r = 0; this.t = 0; this.u = 0; this.q = 0; this.f = 0; this.d = null; this.c = null; this.e = null; this.b = null; this.o = 0; this.l = 0; this.p = 0; this.s = 0; this.n = 0; this.m = 0; this.a = null; this.v = null; this.j = false; this.g = false; this.h = false; this.k = false; this.i = false; } static { this.$t = markType(CheckboxVisualModelExport, 'CheckboxVisualModelExport'); } w() { let a = new StringBuilder(0); a.m("{"); a.m("left : " + this.r + ", "); a.m("top : " + this.t + ", "); a.m("height : " + this.q + ", "); a.m("width : " + this.u + ", "); a.m("baseTheme : " + this.f + ", "); a.m("actualUncheckedBackgroundColor : " + this.d.serialize() + ", "); a.m("actualTickColor : " + this.c + ", "); a.m("actualUncheckedBorderColor : " + this.e.serialize() + ", "); a.m("actualCheckedBorderColor : " + this.b.serialize() + ", "); a.m("borderWidth : " + this.o + ", "); a.m("actualBorderWidth : " + this.l + ", "); a.m("tickStrokeWidth : " + this.s + ", "); a.m("actualTickStrokeWidth : " + this.n + ", "); a.m("actualCheckedBackgroundColor : " + this.a.serialize() + ", "); if (this.v != null) { a.m("value : \"" + this.v.toString() + "\", "); } a.m("isFocused : " + this.j + ", "); a.m("disableRipple : " + this.g + ", "); a.m("isChecked : " + this.h + ", "); a.m("isIndeterminate : " + this.k + ", "); a.m("isDisabled : " + this.i + ", "); a.m("}"); return a.toString(); } }