1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/wiki/UEVENT.md
2022-12-24 19:12:43 -06:00

641 B

The UEVENT Statement uses ON, OFF or STOP to enable, turn off or suspend user event trapping.

Syntax

UEVENT {ON|STOP|OFF}

  • Keywords currently not supported

  • UEVENT ON enables user defined event-trapping as defined by the ON UEVENT statement.

  • UEVENT OFF disables the event-trapping routine. All events are ignored and are not remembered.

  • UEVENT STOP suspends the event-trapping routine. An event is remembered, and the event-trapping routine will be performed as soon as a UEVENT ON statement re-enables the trapping.

See Also