Retrieves the classes from a window.
WinGetClassList ( "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 window classes read. |
Failure: | Returns "" and sets @error to 1 if no window matches the criteria. |
Remarks
Class names are linefeed (@LF) separated. WinGetClassList works on both minimized and hidden windows. Up to 64KB of text can be retrieved. If multiple windows match the criteria, the classes are read from the most recently active window.
Related
WinGetText, ControlCommand
Example
$text = WinGetClassList("Untitled -", "")
MsgBox(0, "Text read was:", $text)