Window.showModal

Function/Meaning
Display window modally
Type
Method of Window class
Syntax
showModal()
Arguments
None
Return Value
None (void)
Description
Displays the window as modal ( modal state ). This method makes the window visible and temporarily disables other windows. Therefore, the user can only access this window (this is called a modal state). The modal state is released when the window is closed.
The window must be hidden at the time this method is called.