igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
66 lines (65 loc) • 2.42 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 { TextCellInfoDescription } from "./TextCellInfoDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let TextHeaderCellInfoDescription = /*@__PURE__*/ (() => {
class TextHeaderCellInfoDescription extends TextCellInfoDescription {
constructor() {
super();
this.gr = false;
this.gx = null;
this.gu = null;
this.gw = null;
this.gv = null;
}
get_type() {
return "TextHeaderCellInfo";
}
get isColumnOptionsEnabled() {
return this.gr;
}
set isColumnOptionsEnabled(a) {
this.gr = a;
this.j("IsColumnOptionsEnabled");
}
get sortIndicatorStyle() {
return this.gx;
}
set sortIndicatorStyle(a) {
this.gx = a;
this.j("SortIndicatorStyle");
}
get columnOptionsIconAlignment() {
return this.gu;
}
set columnOptionsIconAlignment(a) {
this.gu = a;
this.j("ColumnOptionsIconAlignment");
}
get columnOptionsIconColor() {
return this.gw;
}
set columnOptionsIconColor(a) {
this.gw = a;
this.j("ColumnOptionsIconColor");
}
get columnOptionsIconBehavior() {
return this.gv;
}
set columnOptionsIconBehavior(a) {
this.gv = a;
this.j("ColumnOptionsIconBehavior");
}
}
TextHeaderCellInfoDescription.$t = markType(TextHeaderCellInfoDescription, 'TextHeaderCellInfoDescription', TextCellInfoDescription.$);
TextHeaderCellInfoDescription.__marshalByValue2 = true;
TextHeaderCellInfoDescription.__marshalByValueAlias2 = "TextHeaderCellModel";
return TextHeaderCellInfoDescription;
})();