igniteui-angular-inputs
Version:
Ignite UI Angular input components for building rich data visualizations for modern web apps.
62 lines (61 loc) • 2.39 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 { ControlDisplayDensity_$type } from "igniteui-angular-core";
import { StringBuilder } from "igniteui-angular-core";
/**
* @hidden
*/
export class ButtonGroupVisualModelExport extends Base {
constructor() {
super(...arguments);
this.m = 0;
this.n = 0;
this.o = 0;
this.l = 0;
this.e = 0;
this.f = 0;
this.a = null;
this.k = 0;
this.b = null;
this.d = null;
this.c = null;
this.j = 0;
this.g = false;
this.h = false;
this.i = null;
}
static { this.$t = markType(ButtonGroupVisualModelExport, 'ButtonGroupVisualModelExport'); }
p() {
let a = new StringBuilder(0);
a.m("{");
a.m("left : " + this.m + ", ");
a.m("top : " + this.n + ", ");
a.m("height : " + this.l + ", ");
a.m("width : " + this.o + ", ");
a.m("baseTheme : " + enumGetBox(BaseControlTheme_$type, this.e) + ", ");
a.m("actualDensity : " + enumGetBox(ControlDisplayDensity_$type, this.f) + ", ");
a.m("selectedIndices : " + this.a + ", ");
a.m("actualItemBackgroundColor : " + this.b.serialize() + ", ");
a.m("actualItemTextColor : " + this.d.serialize() + ", ");
a.m("actualItemBorderColor : " + this.c.serialize() + ", ");
a.m("actualItemBorderWidth : " + this.j + ", ");
a.m("isDisabled : " + this.g + ", ");
a.m("isMultiSelect : " + this.h + ", ");
a.m("buttonModels: [");
for (let b = 0; b < this.i.count; b++) {
if (b != 0) {
a.m(",");
}
a.m(this.i._inner[b].serialize());
}
a.m("]");
a.m("}");
return a.toString();
}
}