EVENTMASK Mnemonic - Change Event Mask
Syntax
'EVENTMASK'(mask)
Description
For BBj-specific information, see EVENTMASK Mnemonic - BBj.
The 'EVENTMASK' mnemonic changes the set of events that are reported by a given window.
Parameter |
Description |
mask |
A hexadecimal string. |
Following is the list of event masks:
Event |
Code |
Mask Bit |
A |
$40000000$ |
|
B |
Mandatory |
|
c |
$02000000$ |
|
f |
$00800000$ |
|
e |
$00400000$ |
|
t |
$00000400$ |
|
l (lower case L) |
$01000000$ |
|
C |
Mandatory |
|
d |
$00000040$ |
|
u |
$00000080$ |
|
2 |
$00000200$ |
|
m |
$00000100$ |
|
N |
Mandatory |
|
R |
$20000000$ |
|
p |
$00100000$ |
|
s |
$80000000$ |
|
b |
Mandatory |
|
X |
Mandatory |
|
F |
$00000004$ |
|
S |
$00000008$ |
To get all events possible:
PRINT (sysgui_chan) 'EVENTMASK'($ffffffff$)
To get only the required events:
PRINT (sysgui_chan) 'EVENTMASK'($00000000$)