igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
58 lines (57 loc) • 2.06 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.ct = 0;
this.cv = 0;
this.cu = 0;
this.cs = 0;
}
get_type() {
return "FilterRowDefinition";
}
get paddingLeft() {
return this.ct;
}
set paddingLeft(a) {
this.ct = a;
this.j("PaddingLeft");
}
get paddingTop() {
return this.cv;
}
set paddingTop(a) {
this.cv = a;
this.j("PaddingTop");
}
get paddingRight() {
return this.cu;
}
set paddingRight(a) {
this.cu = a;
this.j("PaddingRight");
}
get paddingBottom() {
return this.cs;
}
set paddingBottom(a) {
this.cs = a;
this.j("PaddingBottom");
}
}
FilterRowDefinitionDescription.$t = markType(FilterRowDefinitionDescription, 'FilterRowDefinitionDescription', DefinitionBaseDescription.$);
FilterRowDefinitionDescription.__canMarshalByValue = true;
FilterRowDefinitionDescription.__marshalByValueAlias = "FilterRowDefinition";
return FilterRowDefinitionDescription;
})();