Enum OKeyText
How functions send text. See OKey.TextHow.
public enum OKeyText
Remarks
There are three ways to send text to the active app using keys:
- Characters (default) - use special key code VK_PACKET. Can send most characters.
- Keys - use virtual-key codes, with
Shift
etc where need. Can send only characters that can be simply entered with the keyboard using current keyboard layout. - Paste - use the clipboard and
Ctrl+V
. Can send any text.
Most but not all apps support all three ways.
Namespace: Au.Types
Assembly: Au.dll
Fields
Name | Description |
---|---|
Characters | Send most text characters using special key code VK_PACKET.
This option is default. Few apps don't support it.
For newlines, tab and space sends keys ( |
KeysOrChar | Send virtual-key codes, with |
KeysOrPaste | Send virtual-key codes, with |
Paste | Paste text using the clipboard and |