public static enum SendKeyEventCommandParams.DOMKeyLocation
Represents the location of a key on the keyboard.
Enum Constant and Description |
---|
LEFT
The key activated originated from the left key location
(when there is more than one possible location for this key).
|
NUMPAD
The key activation originated on the numeric keypad or with a virtual key corresponding to the numeric keypad
(when there is more than one possible location for this key).
Note that the NumLock key should always be encoded with a location of
STANDARD . |
RIGHT
The key activation originated from the right key location
(when there is more than one possible location for this key).
|
STANDARD
The key activation MUST NOT be distinguished as the left or right version of the key,
and (other than the
NumLock key) did not originate from the numeric keypad. |
Modifier and Type | Method and Description |
---|---|
int |
toValue()
Returns the raw key location value.
|
public static SendKeyEventCommandParams.DOMKeyLocation STANDARD
The key activation MUST NOT be distinguished as the left or right version of the key,
and (other than the NumLock
key) did not originate from the numeric keypad.
public static SendKeyEventCommandParams.DOMKeyLocation LEFT
The key activated originated from the left key location (when there is more than one possible location for this key).
public static SendKeyEventCommandParams.DOMKeyLocation RIGHT
The key activation originated from the right key location (when there is more than one possible location for this key).
public static SendKeyEventCommandParams.DOMKeyLocation NUMPAD
The key activation originated on the numeric keypad or with a virtual key corresponding to the numeric keypad
(when there is more than one possible location for this key).
Note that the NumLock key should always be encoded with a location of STANDARD
.