UNPKG

igniteui-react-core

Version:
58 lines (57 loc) 2.02 kB
/* 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 { get_type() { return "FilterRowDefinition"; } constructor() { super(); this.ct = 0; this.cv = 0; this.cu = 0; this.cs = 0; } 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 = /*@__PURE__*/ markType(FilterRowDefinitionDescription, 'FilterRowDefinitionDescription', DefinitionBaseDescription.$); FilterRowDefinitionDescription.__canMarshalByValue = true; FilterRowDefinitionDescription.__marshalByValueAlias = "FilterRowDefinition"; return FilterRowDefinitionDescription; })();