Difference between revisions of "PressVKey"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> procedure PressVKey(const VKey: Byte); </source> ==Availability== SCAR Divi 3.35 > Current ==Description== Sends a key defi...") |
(No difference)
|
Latest revision as of 15:34, 10 November 2012
Definition
procedure PressVKey(const VKey: Byte);
Availability
SCAR Divi 3.35 > Current
Description
Sends a key defined by VKey. The key will only be sent once every time to function is called. An extended version of this function is available as PressVKeyEx.
Example
begin PressVKey(CharToVKey('a')); end.