igniteui-webcomponents-inputs
Version:
Ignite UI Web Components inputs components.
45 lines (44 loc) • 1.99 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 { __extends } from "tslib";
import { Base, enumGetBox, markType } from "igniteui-webcomponents-core";
import { BaseControlTheme_$type } from "igniteui-webcomponents-core";
import { StringBuilder } from "igniteui-webcomponents-core";
/**
* @hidden
*/
export var CheckboxListVisualModelExport = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(CheckboxListVisualModelExport, _super);
function CheckboxListVisualModelExport() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.f = 0;
_this.g = 0;
_this.h = 0;
_this.e = 0;
_this.c = 0;
_this.b = null;
_this.a = null;
_this.d = 0;
return _this;
}
CheckboxListVisualModelExport.prototype.i = function () {
var a = new StringBuilder(0);
a.l("{");
a.l("left : " + this.f + ", ");
a.l("top : " + this.g + ", ");
a.l("height : " + this.e + ", ");
a.l("width : " + this.h + ", ");
a.l("baseTheme : " + enumGetBox(BaseControlTheme_$type, this.c) + ", ");
a.l("backgroundColor : " + this.b.serialize() + ", ");
a.l("actualSelectAllCaptionTextColor : " + this.a.serialize() + ", ");
a.l("actualRowHeight : " + this.d);
a.l("}");
return a.toString();
};
CheckboxListVisualModelExport.$t = markType(CheckboxListVisualModelExport, 'CheckboxListVisualModelExport');
return CheckboxListVisualModelExport;
}(Base));