window.isHidden

Syntax window.isHidden (title)

Params title is the name of the window we want to determine as being hidden.

Action Determines if the window is hidden.

Returns True if the window is not open or is hidden, false otherwise.

Examples With the examples window open and visible, type and execute:
window.hide (@examples);

window.isHidden (@examples)


   » true

Now type and execute:
window.show (@examples);

window.isHidden (@examples)


   » false

Now close the examples window, then type and execute:
window.isHidden (@examples)


   » true // A window that is not open is hidden.

Notes The names of open, hidden windows are italicized in the Window menu.

This verb returns the opposite result of window.isVisible

See Also window.hide

window.show

window.isVisible

Discuss