winframe class : IsMaximum getter
Description
Gets a value that indicates whether a window is maximized.
Syntax
winframeInstance.IsMaximum
Arguments
None
Return value
| Class | Description |
| bool | A value that indicates whether a window is maximized. |
Sample code
| 1: | wfpool wfp; |
| 2: | winframe winframeIns = wfp.GetActive(); // Gets a window that has focus. |
| 3: | bool max = winframeIns.IsMaximum; |
Notes
It returns true if the window is maximized. Otherwise, returns false.
Links for reference
None.


