Skip to main content
Version: 8.3 Beta 🚧

system.vision.closeWindow

Backwards Compatibility

This function replaces system.nav.closeWindow. Any scripts containing Vision Client scoped functions that were replaced with system.vision syntax will still work to maintain backwards compatibility. Only the system.vision variations will appear in the Script Editor's autocomplete popup.

This function is used in Python Scripting.

Description​

Given a window path, or a reference to a window itself, it will close the window. If the window can't be found, this function will do nothing.

note

This function is available on secondary desktops via the system.vision.desktop function. See the Multi-Monitor Clients page for more details on secondary desktops.

Client Permission Restrictions​

This scripting function has no Client Permission restrictions.

Syntax #1 (FPMIWindow Param)​

system.vision.closeWindow(window)

Parameters​

TypeParameterDescription
FPMIWindowwindowA reference to the window to close.

Returns​

Nothing

Scope​

Vision Client

Syntax #2 (String Param)​

system.vision.closeWindow(windowPath)

Parameters​

TypeParameterDescription
StringwindowPathThe path of a window to close.

Returns​

Nothing

Scope​

Vision Client

Code Examples​

Example #1
# This example gets the window named 'Overview' and then closes it.
# If the window isn't open, a warning is shown.
try:
window = system.vision.getWindow('Overview')
system.vision.closeWindow(window)
except ValueError:
system.vision.showWarning("The Overview window isn't open")
Example #2
# This example would close the window named 'Overview' in one step.
# If the window isn't open, the call to closeWindow will have no effect
system.vision.closeWindow('Overview')