KeyUp

From SCAR Divi Manual
Revision as of 01:27, 30 October 2012 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> procedure KeyUp(const Key: Char); </source> ==Availability== SCAR Divi 3.35 > Current ==Description== Releases a key define...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

procedure KeyUp(const Key: Char);

Availability

SCAR Divi 3.35 > Current

Description

Releases a key defined by the character Key. The key will only be sent once every time to function is called. To hold the key, call KeyDown.

Example

begin
  KeyDown('a');
  Wait(50);
  KeyUp('a');
end.

See Also