|
|
|
|
Functions
Events
MioScript Reference
|
|
Syntax
| window.ID.canGoOut(canGoOut) |
Parameters
| BOOL | canGoOut | If set to true, the window can be moved outside of the screen. It is possible do drag a window to a secondary monitor. If set to false, the window remains visible in the monitor where it is located. It is not possible to drag the window to a secondary monitor. |
Return value
No value is returned.
Description
Set if a window can be moved outside of the monitor where it is located.
In most of the time, it is recommended to call this function with the parameter set to true> in order to support multple monitors configurations. |
MioScript Sample Code
window.main.canGoOut(true) |
|
|
|