wfpool class : GetAll() method
Description
Gets a list of all open top-level windows.
Syntax
wfpoolInstance.GetAll()
Arguments
None
Return value
Class | Description |
list{winframe} | A list of the window. |
Sample code
1: | wfpool wfp; |
2: | list{winframe} wflist = wfp.GetAll(); // Gets all window that do not have a parent. |
Notes
The top-level windows are windows that do not have a parent.
If the OS allows the background execution of the application, hidden windows running in the background may be listed.
Links for reference
None