The KeyBoard Manager Class
The KeyBoard manager class is used to simulate typing keys on the keyboard. It has the following methods:
| Method | Brief Description |
| KeyDown | Simulates a key down. (Press and hold) |
| KeyPress | Simulates a keyboard key press. (Key down followed by key up). |
| KeyUp | Simulates a key up. (Key-Release) |
| SendString | Sends a string to the active application using the Win32 SendKeys API. |
| TypeText | Types text one character at a time with a specific typing speed. This function does not support special keywords (e.g. {TAB}, {SPACE}) or special characters like ^, +, etc. To simulate special keys use SendString if you want to send special characters like Ctrl/Shift, etc. |