Skip to main content

FormItemBase.ArrowVerticalOptions Property

Gets or sets the vertical alignment of the form item’s arrow. This is a bindable property.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

Declaration

public LayoutOptions ArrowVerticalOptions { get; set; }

Property Value

Type Default Description
LayoutOptions Fill

The arrow’s vertical alignment.

Example

The following markup customizes the default arrow’s settings for a Form Item:

<dxe:FormItem ShowArrow="True"
              ArrowColor="Gray"
              ArrowMargin="10"
              ArrowVerticalOptions="Center"/>
See Also