bgiIsWindowVisible

Checks if a window is visible. Takes win (Int). Returns the visibility state of a BGI window by searching the gizmoMap for the window ID and returning its isVisible property.

BGI GUI

Parameters & Returns

Parameters

win Int

Returns

Int

Quick Summary

Checks if a window is visible. Takes win (Int). Returns the visibility state of a BGI window by searching the gizmoMap for the window ID and returning its isVisible property.

Technical Exegesis...

Returns the visibility state of a BGI window by searching the gizmoMap for the window ID and returning its isVisible property. Iterates through all gizmos until finding a match. Returns 1 (true) if the window is currently visible on screen, 0 (false) if hidden, or -1 if the window ID is not found.

Visible windows are shown on screen and can be interacted with (if also enabled). Hidden windows exist but are not displayed.

Example

Example.bam
; No example implemented yet