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
winInt
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.
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. The visibility state is independent of enabled state - a window can be visible but disabled (grayed out). Use bgiSetWindowVisibility to change the visibility state.