WinGetClass()

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

WinGetClass()

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

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

Retrieves the specified window's class name.

Parameters

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

Returns the retrieved class name.

Remarks

Wrapper for AutoHotkey Docs - WinGetClass.
Static method.

Only the class name is retrieved (the prefix "ahk_class" is not included in return value).

Window titles and text are case sensitive. Hidden windows are not detected unless DetectHiddenWindows has been turned on.

See Also:AutoHotkey Docs - WinGetClass.

Example

class := Mfunc.WinGetClass("A")
MsgBox, The active window's class is "%class%".