Syntax
| window.ID.autoClose(escapeCanClose, rightClickCanClose) |
Parameters
| BOOL | escapeCanClose | If set to true, the user can close the window with the ESC key.
| | BOOL | rightClickCanClose | If set to true, the user can close the window with a right click. |
Return value
No value is returned.
Description
| This function sets if the user can close the window with the ESC key or right-click. |
MioScript Sample Code
window.main.autoClose(false, false) |
|