winframe class : Activate() method
Description
Activates the window.
Syntax
winframeInstance.Activate()
Arguments
None
Return value
None
Sample code
1: | wfpool wfp; |
2: | winframe winframeIns = wfp.GetActive(); // Gets a window that has focus. |
3: | winframeIns.Activate(); |
Notes
If this method is executed on a minimized window, it will return to its pre-minimized state and become active.
Links for reference
None