FMX.Types.TVirtualKeyBoardState
Delphi
TVirtualKeyboardState = (AutoShow, Visible, Error, Transient);
C++
enum class DECLSPEC_DENUM TVirtualKeyboardState : unsigned int { AutoShow, Visible, Error, Transient };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | FMX.Types.pas FMX.Types.hpp |
FMX.Types | FMX.Types |
Description
Enumeration used to control the state of a virtual (on-screen) keyboard to be displayed.
TVirtualKeyBoardState is the type of the VirtualKeyBoardState property defined in the IFMXVirtualKeyboardService interface. VirtualKeyBoardState is used to represent the current state of the virtual keyboard.
TVirtualKeyBoardState defines the following values:
Value | Meaning |
---|---|
|
The virtual keyboard should be shown when the control receives the input focus. |
|
The virtual keyboard is visible at the moment. |
|
If you try to display the virtual keyboard, an error is generated. |
|
Is used for internal purposes. |