FMX.Types.TReturnKeyType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TReturnKeyType = (Default, Done, Go, Next, Search, Send);

C++

enum class DECLSPEC_DENUM TReturnKeyType : unsigned int { Default, Done, Go, Next, Search, Send, rktDefault _DEPRECATED_ATTRIBUTE3("Use TReturnKeyType.Default")  = 0, rktDone _DEPRECATED_ATTRIBUTE3("Use TReturnKeyType.Done")  = 1, rktGo _DEPRECATED_ATTRIBUTE3("Use TReturnKeyType.Go")  = 2, rktNext _DEPRECATED_ATTRIBUTE3("Use TReturnKeyType.Next")  = 3, rktSearch _DEPRECATED_ATTRIBUTE3("Use TReturnKeyType.Search")  = 4, rktSend _DEPRECATED_ATTRIBUTE3("Use TReturnKeyType.Send")  = 5 };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Types.pas
FMX.Types.hpp
FMX.Types FMX.Types

Description

Type of action that an edit control performs when you are editing the text of the control and you press the return key on the virtual keyboard.

When you assign one of these values to the ReturnKeyType property of an edit control, the run-time platform uses this value to determine the type of return button that it displays on the virtual keyboard for the edit control.

TReturnKeyType defines the following values:

Value Android Example iOS Example

Default

Android1Default.png

IOSReturn.PNG

Done

Android1Done.png

IOSDone.PNG

Go

Android1Go.png

IOSGo.PNG

Next

Android1Next.png

IOSNext.PNG

Search

Android1Search.png

IOSSearch.PNG

Send

Android1Send.png

IOSSend.PNG

See Also