bgiGetEventMessage

Returns the current event message type from the global event state. Takes no parameters. Returns the value of the global variable LuiEvent.

BGI GUI

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Int

Quick Summary

Returns the current event message type from the global event state. Takes no parameters. Returns the value of the global variable LuiEvent.

Technical Exegesis...

Returns the current event message type from the global event state. Returns the value of the global variable LuiEvent. Event message types are: BGI_EVENT_COMMAND_CLOSE (0x001) for window close events, BGI_EVENT_COMMAND_CLICK (0x002) for click events (buttons, menu items, links), and BGI_EVENT_COMMAND_UPDATE (0x003) for value change events (trackbars, spinners, textboxes, lists). Returns 0 when no event is pending or after bgiFlushEvent is called.

Example

Example.bam
; No example implemented yet