igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
89 lines (88 loc) • 2.79 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 { DefinitionBaseDescription } from "./DefinitionBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let HeaderDescription = /*@__PURE__*/ (() => {
class HeaderDescription extends DefinitionBaseDescription {
constructor() {
super();
this.cd = null;
this.cb = null;
this.ce = null;
this.cc = null;
this.b4 = 0;
this.b6 = 0;
this.b5 = 0;
this.b3 = 0;
}
get_type() {
return "Header";
}
get sortIndicatorColor() {
return this.cd;
}
set sortIndicatorColor(a) {
this.cd = a;
this.e("SortIndicatorColor");
}
get actualSortIndicatorColor() {
return this.cb;
}
set actualSortIndicatorColor(a) {
this.cb = a;
this.e("ActualSortIndicatorColor");
}
get sortIndicatorStyle() {
return this.ce;
}
set sortIndicatorStyle(a) {
this.ce = a;
this.e("SortIndicatorStyle");
}
get actualSortIndicatorStyle() {
return this.cc;
}
set actualSortIndicatorStyle(a) {
this.cc = a;
this.e("ActualSortIndicatorStyle");
}
get paddingLeft() {
return this.b4;
}
set paddingLeft(a) {
this.b4 = a;
this.e("PaddingLeft");
}
get paddingTop() {
return this.b6;
}
set paddingTop(a) {
this.b6 = a;
this.e("PaddingTop");
}
get paddingRight() {
return this.b5;
}
set paddingRight(a) {
this.b5 = a;
this.e("PaddingRight");
}
get paddingBottom() {
return this.b3;
}
set paddingBottom(a) {
this.b3 = a;
this.e("PaddingBottom");
}
}
HeaderDescription.$t = markType(HeaderDescription, 'HeaderDescription', DefinitionBaseDescription.$);
HeaderDescription.__canMarshalByValue = true;
return HeaderDescription;
})();