igniteui-react-core
Version:
Ignite UI React Core.
98 lines (97 loc) • 3.45 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 { ToolActionDescription } from "./ToolActionDescription";
import { markType } from "./type";
/**
* @hidden
*/
var ToolActionCheckboxGroupDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ToolActionCheckboxGroupDescription, _super);
function ToolActionCheckboxGroupDescription() {
var _this = _super.call(this) || this;
_this.d5 = null;
_this.d2 = 0;
_this.d6 = null;
_this.d7 = null;
_this.d8 = null;
_this.d4 = null;
return _this;
}
ToolActionCheckboxGroupDescription.prototype.get_type = function () {
return "ToolActionCheckboxGroup";
};
Object.defineProperty(ToolActionCheckboxGroupDescription.prototype, "selectedFontFamily", {
get: function () {
return this.d5;
},
set: function (a) {
this.d5 = a;
this.j("SelectedFontFamily");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxGroupDescription.prototype, "selectedFontSize", {
get: function () {
return this.d2;
},
set: function (a) {
this.d2 = a;
this.j("SelectedFontSize");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxGroupDescription.prototype, "selectedFontStyle", {
get: function () {
return this.d6;
},
set: function (a) {
this.d6 = a;
this.j("SelectedFontStyle");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxGroupDescription.prototype, "selectedFontWeight", {
get: function () {
return this.d7;
},
set: function (a) {
this.d7 = a;
this.j("SelectedFontWeight");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxGroupDescription.prototype, "selectedTextColor", {
get: function () {
return this.d8;
},
set: function (a) {
this.d8 = a;
this.j("SelectedTextColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ToolActionCheckboxGroupDescription.prototype, "actualSelectedTextColor", {
get: function () {
return this.d4;
},
set: function (a) {
this.d4 = a;
this.j("ActualSelectedTextColor");
},
enumerable: false,
configurable: true
});
ToolActionCheckboxGroupDescription.$t = markType(ToolActionCheckboxGroupDescription, 'ToolActionCheckboxGroupDescription', ToolActionDescription.$);
return ToolActionCheckboxGroupDescription;
}(ToolActionDescription));
export { ToolActionCheckboxGroupDescription };