Skip to main content
Version: 7.9

system.gui.getParentWindow

This function is used in Python Scripting.

Description​

Finds the parent (enclosing) window for the component that fired an event, returning a reference to it.

Client Permission Restrictions​

This scripting function has no Client Permission restrictions.

Syntax​

system.gui.getParentWindow(event)

Parameters​

TypeParameterDescription
EventObjecteventA component event object.

Returns​

PyObject - The window that contains the component that fired the event.

Scope​

Client

Code Examples​

Example #1
# Use this in an event script to change the window's title.

window = system.gui.getParentWindow(event)
window.title='This is a new title'