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