igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
57 lines (56 loc) • 1.98 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 FilterRowDefinitionDescription = /*@__PURE__*/ (() => {
class FilterRowDefinitionDescription extends DefinitionBaseDescription {
constructor() {
super();
this.b4 = 0;
this.b6 = 0;
this.b5 = 0;
this.b3 = 0;
}
get_type() {
return "FilterRowDefinition";
}
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");
}
}
FilterRowDefinitionDescription.$t = markType(FilterRowDefinitionDescription, 'FilterRowDefinitionDescription', DefinitionBaseDescription.$);
FilterRowDefinitionDescription.__canMarshalByValue = true;
return FilterRowDefinitionDescription;
})();