OutputVar := Mfunc.WinGetTitle([WinTitle, WinText, ExcludeTitle, ExcludeText])
Retrieves the title of the specified window.
WinTitle
A window title or other criteria identifying the target window. See WinTitle.
Can be MfString instance or var containing string.
WinText
If present, this parameter must be a substring from a single text element of the target window (as revealed by the included Window Spy utility). Hidden text elements are detected if DetectHiddenText is ON.
Can be MfString instance or var containing string.
ExcludeTitle
Windows whose titles include this value will not be considered.
Can be MfString instance or var containing string.
ExcludeText
Windows whose text include this value will not be considered.
Can be MfString instance or var containing string.
Returns the retrieved title.
Wrapper for AutoHotkey Docs - WinGetTitle.
Static method.
To discover the name of the window that the mouse is currently hovering over, use Mfunc.MouseGetPos.
Window titles and text are case sensitive. Hidden windows are not detected unless DetectHiddenWindows has been turned on.
Title := Mfunc.WinGetTitle("A")
MsgBox, The active window is "%Title%".