NumericEdit.DownIconCommand Property
In This Article
Specifies the command that is executed when a user taps the down icon.
Namespace: DevExpress.XamarinForms.Editors
Assembly: DevExpress.XamarinForms.Editors.dll
NuGet Package: DevExpress.XamarinForms.Editors
#Declaration
C#
public ICommand DownIconCommand { get; set; }
#Property Value
Type | Description |
---|---|
ICommand | A 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