Skip to main content
All docs
V20.1

TextEditBase.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 text 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.

See Also