Difference between revisions of "CharToVKey"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> function CharToVKey(const Key: Char): Byte; </source> ==Availability== SCAR Divi 3.35 > Current ==Description== Returns the...")
 
(No difference)

Latest revision as of 23:09, 11 October 2012

Definition

function CharToVKey(const Key: Char): Byte;

Availability

SCAR Divi 3.35 > Current

Description

Returns the key code associated with the character defined by Key used to send keys.

Example

begin
  WriteLn(CharToVKey('a'));
  WriteLn(CharToVKey('A'));
end.

Output:

65
65