NumericEdit.DownIconCommand Property
In This Article
Gets or sets the command that is executed when a user taps the down icon. This is a bindable property.
Namespace: DevExpress.Maui.Editors
Assembly: DevExpress.Maui.Editors.dll
NuGet Package: DevExpress.Maui.Editors
#Declaration
C#
public ICommand DownIconCommand { get; set; }
#Property Value
Type | Description |
---|---|
ICommand | The command that exposes the ICommand interface. |
#Remarks
Use the DownIconCommand property to specify the action linked to the down icon. The DownIconCommandParameter property allows you to pass data to this command.
Alternatively, you can handle the DownIconClicked event to define this action.
See Also