FMX.Types.TVirtualKeyBoardState

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TVirtualKeyboardState = (AutoShow, Visible, Error, Transient);

C++

enum class DECLSPEC_DENUM TVirtualKeyboardState : unsigned int { AutoShow, Visible, Error, Transient, vksAutoShow _DEPRECATED_ATTRIBUTE3("Use TVirtualKeyboardState.AutoShow")  = 0, vksVisible _DEPRECATED_ATTRIBUTE3("Use TVirtualKeyboardState.Visible")  = 1, vksError _DEPRECATED_ATTRIBUTE3("Use TVirtualKeyboardState.Error")  = 2, vksTransient _DEPRECATED_ATTRIBUTE3("Use TVirtualKeyboardState.Transient")  = 3 };

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

AutoShow

The virtual keyboard should be shown when the control receives the input focus.

Visible

The virtual keyboard is visible at the moment.

Error

If you try to display the virtual keyboard, an error is generated.

Transient

Is used for internal purposes.

See Also