jsexecutor class : IsMain getter
Description
Returns a value that indicates whether it is a jsexecutor for the Main-browser.
Syntax
instance.IsMain
Arguments
None.
Return value
Class | Description |
bool | Whether it is for the Main-browser. |
Sample code
1: | jsexecutor jse = new jsexecutor(); // For the Main-browser |
2: | bool m = jse.IsMain; // true |
Notes
Returns true if it is for the Main-browser. If it is for the Sub-browser, returns false.
Links for reference
None.