window class : TopMost getter
Description
Returns a value that indicates whether the window is always in the foreground.
Syntax
instance.TopMost
Arguments
None.
Return value
| Class | Description |
| bool | Whether the window is always in the foreground. |
Sample code
| 1: | window w = new window(); |
| 2: | bool foreground = w.TopMost; |
Notes
Returns true if the window is always in the foreground. Otherwise, returns false.
The default value is false.
Links for reference
None.


