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.fo = false;
this.fu = null;
this.fr = null;
this.ft = null;
this.fs = null;
}
get_type() {
return "TextHeaderCellInfo";
}
get isColumnOptionsEnabled() {
return this.fo;
}
set isColumnOptionsEnabled(a) {
this.fo = a;
this.e("IsColumnOptionsEnabled");
}
get sortIndicatorStyle() {
return this.fu;
}
set sortIndicatorStyle(a) {
this.fu = a;
this.e("SortIndicatorStyle");
}
get columnOptionsIconAlignment() {
return this.fr;
}
set columnOptionsIconAlignment(a) {
this.fr = a;
this.e("ColumnOptionsIconAlignment");
}
get columnOptionsIconColor() {
return this.ft;
}
set columnOptionsIconColor(a) {
this.ft = a;
this.e("ColumnOptionsIconColor");
}
get columnOptionsIconBehavior() {
return this.fs;
}
set columnOptionsIconBehavior(a) {
this.fs = a;
this.e("ColumnOptionsIconBehavior");
}
}
TextHeaderCellInfoDescription.$t = markType(TextHeaderCellInfoDescription, 'TextHeaderCellInfoDescription', TextCellInfoDescription.$);
TextHeaderCellInfoDescription.__marshalByValue2 = true;
TextHeaderCellInfoDescription.__marshalByValueAlias2 = "TextHeaderCellModel";
return TextHeaderCellInfoDescription;
})();