Syntax
| window.ID.enabled(Enabled) |
Parameters
| BOOL | Enabled | Optional. When false, the user cannot interact with the content of the window. If this parameter is not specified, the function returns true if he window is enabled, false otherwise. |
Return value
| If the parameter Enabled is not set, the function returns true if he window is enabled, false otherwise. |
Description
| Set the window as enabled or disabled, or returns the current state. |
MioScript Sample Code
window.main.enabled(false) |
|