Back to Devexpress

EditBase.ClearIconCommand Property

maui-devexpress-dot-maui-dot-editors-dot-editbase-c8b8426a.md

latest1.9 KB
Original Source

EditBase.ClearIconCommand Property

Gets or sets the command executed when a user taps the clear icon. This is a bindable property.

Namespace : DevExpress.Maui.Editors

Assembly : DevExpress.Maui.Editors.dll

NuGet Package : DevExpress.Maui.Editors

Declaration

csharp
public ICommand ClearIconCommand { get; set; }

Property Value

TypeDescription
ICommand

The command that exposes the ICommand interface.

|

Remarks

Use the ClearIconCommand property to set the action that occurs when a user taps the clear icon. The ClearIconCommandParameter property allows you to pass data to the ClearIconCommand.

You can also use the ClearIconClicked event to define the action on clear icon tap.

Example

This example shows how to create a custom command with a parameter and execute it when a user taps the start icon.

  1. In a view model, create a command that implements the ICommand interface:

  2. Bind the specified command to the StartIconCommand property and define the StartIconCommandParameter value:

See Also

EditBase Class

EditBase Members

DevExpress.Maui.Editors Namespace