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