Difference between revisions of "PressVKeyEx"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> procedure PressVKeyEx(const VKey: Byte; const Interval: Integer); </source> ==Availability== SCAR Divi 3.35 > Current ==Des...")
 
 
Line 8: Line 8:
  
 
==Description==
 
==Description==
Sends a key defined by '''VKey'''. The key will only be sent once every time to function is called. '''Interval'' specifies the time between holding and releasing the key in ms.
+
Sends a key defined by '''VKey'''. The key will only be sent once every time to function is called. '''Interval''' specifies the time between holding and releasing the key in ms.
  
 
==Example==
 
==Example==

Latest revision as of 16:36, 10 November 2012

Definition

procedure PressVKeyEx(const VKey: Byte; const Interval: Integer);

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. Interval specifies the time between holding and releasing the key in ms.

Example

begin
  PressVKeyEx(CharToVKey('a'), 250);
end.

See Also