====== IsPressed ====== IsPressed () Returns the current state of the pressed key. **Options** |< 100% 10%>| |vkey|Virtual key code according to [[https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes|table]].| **Return value** 1 if the key is pressed, 0 if not. If vkey is incorrect, **ERROR** is set to 1. **Example** # if the Ctrl key is pressed If IsPressed (0x11) Then ...