Skip to main content

FormItemBase.ArrowColor Property

Gets or sets the arrow’s fill color. This is a bindable property.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

Declaration

public Color ArrowColor { get; set; }

Property Value

Type Description
Color

An object that specifies the arrow’s color.

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