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