igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
59 lines (58 loc) • 1.96 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let GridConditionalStyleFontInfoDescription = /*@__PURE__*/ (() => {
class GridConditionalStyleFontInfoDescription extends Description {
constructor() {
super();
this.m = null;
this.k = 0;
this.n = null;
this.o = null;
}
get_type() {
return "GridConditionalStyleFontInfo";
}
get type() {
return this.get_type();
}
get fontFamily() {
return this.m;
}
set fontFamily(a) {
this.m = a;
this.j("FontFamily");
}
get fontSize() {
return this.k;
}
set fontSize(a) {
this.k = a;
this.j("FontSize");
}
get fontStyle() {
return this.n;
}
set fontStyle(a) {
this.n = a;
this.j("FontStyle");
}
get fontWeight() {
return this.o;
}
set fontWeight(a) {
this.o = a;
this.j("FontWeight");
}
}
GridConditionalStyleFontInfoDescription.$t = markType(GridConditionalStyleFontInfoDescription, 'GridConditionalStyleFontInfoDescription', Description.$);
return GridConditionalStyleFontInfoDescription;
})();