window.isVisible

Syntax window.isVisible (title)

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

Action Determines if the window is open and visible.

Returns True if the window is open and visible, false if it is not.

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

window.isVisible (@examples)


   » false

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

window.isVisible (@examples)


   » true

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


   » false // A window that is not open is not visible.

Notes This verb returns the opposite result of window.isHidden.

See Also window.hide

window.show

window.isHidden

Discuss