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