Skip to main content
A newer version of this page is available. .

EditBase.ReturnCommand Property

Specifies the command that is executed when a user taps the ‘Return’ button.

Namespace: DevExpress.XamarinForms.Editors

Assembly: DevExpress.XamarinForms.Editors.dll

NuGet Package: DevExpress.XamarinForms.Editors

Declaration

public ICommand ReturnCommand { get; set; }

Property Value

Type Description
ICommand

A command that exposes the ICommand interface.

Remarks

When a user inputs a value in the edit box, the operating system’s on-screen keyboard appears. Use the ReturnCommand property to change the action that occurs when a user taps the keyboard’s ‘Return’ button. The ReturnCommandParameter property allows you to pass data to ReturnCommand. Alternatively, you can handle the Completed event to define this action.

See Also