browser class : CanExecute getter
Description
Returns a value that indicates whether the new script is executable.
Syntax
instance.CanExecute
Arguments
None.
Return value
Class | Description |
bool | Whether the new script is executable. |
Sample code
1: | browser b = new browser(); // Main-browser |
2: | bool tile = b.CanExecute; |
Notes
It is a flag indicating whether the new script can execute.
Returns true if possible. Otherwise, returns false.
The display of the script tile depends on the state of the flag.
The script tile is the colored area on the right side of the browser.
If the script tile is not displayed, you neither execute a new script nor select the script file using the shortcut key.
Links for reference
None.