EVENTMASK Mnemonic
BBj-Specific Information
For this topic's original documentation, see EVENTMASK Mnemonic - Change Event Mask.
Syntax
'EVENTMASK'(mask)
Description
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 BBj event masks:
| Mask Bit | Event | Code | 
|---|---|---|
| $00000800$ | Mouse Click (BBj 23 and higher) | k | 
| $00000020$ | Mouse Scroll Wheel | w | 
| $10000000$ | Mouse Enter/Exit | E | 
| $00000001$ | r | |
| Mandatory | P | 
To get all events possible:
PRINT (sysgui_chan) 'EVENTMASK'($ffffffff$)
To get only the required events:
PRINT (sysgui_chan) 'EVENTMASK'($00000000$)