RFIO.AddHotKey

boolean AddHotKey(short cHotKey);

Function AddHotKey(cHotKey As Integer) As Boolean

Adds a hot key to the hot keys array.

Return value

Parameters

cHotKey
    ASCII code of the key.

Remarks
The Hot Keys array contains the ASCII code of the supplemental keys that act as "function keys" during the RFInput() process..
The hot keys are added to the array by the AddHotKey() function.
The array is empty at connection time or it can be emptied by the ClearHotKeys() function.

Example
wsRfIo.ClearHotKeys    ' Clear array
wsRfIo.AddHotKey 65    ' 'A' Key

See also    RFIO, ClearHotKeys