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