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