Enum Keys
Supplies constants representing keyboard keys on mobile devices, which can be used in the input parameter of the SendKey(Keys, int) method.
public enum Keys
Fields
Backspace = 2The Backspace key. Supported on iOS and Android.
Delete = 3The Delete key. Supported on iOS and Android.
Down = 13The Down key. Supported on Android.
End = 8The End key. Supported on Android.
Enter = 0The Enter key. Supported on iOS and Android.
Escape = 5The Escape key. Supported on Android.
Home = 9The Home key. Supported on Android.
Left = 10The Left key. Supported on Android.
PageDown = 7The PageDown key. Supported on Android.
PageUp = 6The PageUp key. Supported on Android.
Return = 1The Return key. Supported on iOS.
Right = 11The Right key. Supported on Android.
Tab = 4The Tab key. Supported on Android.
Up = 12The Up key. Supported on Android.