winframe class : Maximize() method
Description
Maximizes the window.
Syntax
winframeInstance.Maximize()
Arguments
None
Return value
None
Sample code
1: | wfpool wfp; |
2: | winframe winframeIns = wfp.GetActive(); // Gets a window that has focus. |
3: | winframeIns.Maximize(); |
Notes
The window maximized makes the active.
Links for reference
None