ControlGetFocus()

Namespace ›› System ›› Mfunc ›› Methods ››
Parent Previous Next

ControlGetFocus()

OutputVar := Mfunc.ControlGetFocus([WinTitle, WinText, ExcludeTitle, ExcludeText])

Mfunc.ControlGetFocus([WinTitle, WinText, ExcludeTitle, ExcludeText])

Retrieves which control of the target window has input focus, if any.

Parameters

WinTitle

A window title or other criteria identifying the target window.

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.

ExcludeTitle

Windows whose titles include this value will not be considered.

ExcludeText

Windows whose text include this value will not be considered.

Returns

Returns the variable in which to store the identifier of the control, which consists of its classname followed by its sequence number within its parent window, e.g. Button12.

Throws

Throws MfException if error occurs.

Remarks

Wrapper for AutoHotkey Docs - ControlGetFocus.
Static Method

Any and/or all parameter for this function can be instance of MfString or var containing string.

See Also: AutoHotkey Docs - ControlGetFocus

Example

try
{
	OutputVar := Mfunc.ControlGetFocus("Untitled - Notepad") MsgBox, Control with focus = %OutputVar%
}
catch e
{
	MsgBox, The target window doesn't exist or none of its controls has input focus.
}