|
|
|
|
Functions
Events
MioScript Reference
|
|
Syntax
Parameters
| KEYWORD | Order | top | bottom | topmost | noTopmost |
Return value
No value is returned.
Description
Sets the Z order of the window in the list of windows owned by the current application.
The argument Order can be set to one of the following values:
| top | Places the window at the top of the Z order. | | bottom | Places the window at the bottom of the Z order. If the specified window is a topmost window, the window loses its topmost status and is placed at the bottom of all other windows. | | topmost | Places the window above all non-topmost windows. The window maintains its topmost position even when it is deactivated. | | noTopmost | Places the window above all non-topmost windows (that is, behind all topmost windows). This value has no effect if the window is already a non-topmost window. | |
MioScript Sample Code
window.main.zOrder(topmost)
|
|
|
|