FormItemBase.DetailMargin Property
Gets or sets the gaps between the detail text and other form item elements. This is a bindable property.
Namespace: DevExpress.Maui.Editors
Assembly: DevExpress.Maui.Editors.dll
NuGet Package: DevExpress.Maui.Editors
Declaration
public Thickness DetailMargin { get; set; }
Property Value
Type | Description |
---|---|
Thickness | An object that specifies the detail text margin. |
Remarks
The following example sets margins for detail text of three form items:
<!-- Applies the same value to all margins: -->
<dxe:FormItem ...
DetailMargin="20" />
<!-- Specifies horizontal and vertical margins: -->
<dxe:FormItem ...
DetailMargin="20,10" />
<!-- Specifies left, top, right, and bottom margins: -->
<dxe:FormItem ...
DetailMargin="30,20,30,10" />
See Also