visible

Usage

-- Lingo syntax
windowObjRef.visible

// JavaScript syntax
windowObjRef.visible;

Description

Window property; determines whether a window is visible (TRUE) or not (FALSE). Read/write.

Example

This statement makes the window named Control_Panel visible:

-- Lingo syntax
window("Control_Panel").visible = TRUE

// JavaScript syntax
window("Control_Panel").visible = true;

See also

Window