Difference between revisions of "PressKey"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> procedure PressKey(const Key: Char); </source> ==Availability== SCAR Divi 3.35 > Current ==Description== Sends a character ...")
 
(No difference)

Latest revision as of 16:43, 10 November 2012

Definition

procedure PressKey(const Key: Char);

Availability

SCAR Divi 3.35 > Current

Description

Sends a character defined by Key as a keypress. The key will only be sent once every time to function is called. An extended version of this function is available as PressKeyEx.

Example

begin
  PressKey('a');
end.

See Also