Skip to main content

AutoCompleteEdit.SubmitIcon Property

Specifies the submit icon.

Namespace: DevExpress.XamarinForms.Editors

Assembly: DevExpress.XamarinForms.Editors.dll

NuGet Package: DevExpress.XamarinForms.Editors

Declaration

public ImageSource SubmitIcon { get; set; }

Property Value

Type Description
ImageSource

The icon.

Remarks

The submit icon appears on the right side of the edit box when a user enters text. Use the SubmitIconVisibility property to change the visibility of the submit icon. The SubmitIconColor property allows you to specify the icon’s color.

The following settings allow you to set the action that occurs when a user taps the submit icon:

Property/Event

Description

QuerySubmitted

Fires when a user taps the submit icon in the edit box or selects a suggestion in the drop-down list.

QuerySubmittedCommand

Specifies the command executed when a user taps the submit icon.

QuerySubmittedCommandParameter

Specifies the parameter passed to the QuerySubmittedCommand.

See Also