StatusBarGetText()

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

StatusBarGetText()

OutputVar := Mfunc.StatusBarGetText([Part#, WinTitle, WinText, ExcludeTitle, ExcludeText])

Mfunc.StatusBarGetText([Part#, WinTitle, WinText, ExcludeTitle, ExcludeText])

Retrieves the text from a standard status bar control.

Parameters

Part#

Which part number of the bar to retrieve, which can be an expression. Default 1, which is usually the part that contains the text of interest.

Can be MfInteger instance or var containing integer.

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 text.

Throws

Throws MfException throw any errors with InnerException set to the Autohotkey - StatusBarGetText error message.
Throws MfException any other general error occurs.

Remarks

Wrapper for Autohotkey - StatusBarGetText.
Static method.

This command attempts to read the first standard status bar on a window (Microsoft common control: msctls_statusbar32). Some programs use their own status bars or special versions of the MS common control, in which case the text cannot be retrieved.

Rather than using this command in a loop, it is usually more efficient to use StatusBarWait, which contains optimizations that avoid the overhead of repeated calls to StatusBarGetText.

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

See Also:AutoHotkey Docs - StatusBarGetText.

Example

RetrievedText := Mfunc.StatusBarGetText(1, "Search Results")
IfInString, RetrievedText, found, MsgBox, Search results have been found.