GetCurrentKeyState

From SCAR Divi Manual
Jump to: navigation, search

Definition

function GetCurrentKeyState(const VKey: Byte): Boolean;

Availability

SCAR Divi 3.35 > Current

  • Did not function correctly before 3.37 for TSCARWindowClient

Description

Gets the state of a key instantly from the active client. This means that it will return true if the key is currently being pressed.

Example

begin
  repeat
    Wait(500)
  until GetCurrentKeyState(VK_DOWN);
  WriteLn('Pressed down');
end.

See Also