Retrieves the full title from a window.
WinGetTitle ( "title" [, "text"] )
Parameters
| title | The title of the window to read. See Title special definition. |
| text | [optional] The text of the window to read. |
Return Value
| Success: | Returns a string containing the complete window title. |
| Failure: | Returns numeric 0 if no title match. |
Remarks
WinGetTitle("") returns the active window's title. WinGetTitle works on both minimized and hidden windows. If multiple windows match the criteria, the most recently active window is used.
Related
AutoItWinGetTitle, WinGetText, WinSetTitle, WinTitleMatchMode (Option)
Example
$title = WinGetTitle("Untitled -", "")
MsgBox(0, "Full title read was:", $title)