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