====== PressKey ====== Emulates key pressing with the specified code. ===== Syntax ===== procedure PressKey(aKeyCode: integer); ==== Parameters ==== * **//aKeyCode//** * //type:// integer * //functions:// key code ===== Examples ===== -//Emulate pressing the "Enter" PressKey(13); -//Emulate pressing the "Tab" PressKey(9);