wfpool class : GetByTitle(string) method
Description
Gets a list of the top-level windows that have the specified title.
Syntax
wfpoolInstance.GetByTitle(string title)
Arguments
Class | Name | Description |
string | title | A title. |
Return value
Class | Description |
list{winframe} | A list of the window. |
Sample code
1: | wfpool wfp; |
2: | list{winframe} wflist = wfp.GetByTitle("some title..."); // Gets a window that has the specified title. |
Notes
The top-level windows are windows that do not have a parent.
Links for reference
None