Retrieves the class list of a window.
The title of the window to access.
Optional text found in the window.
The size of the buffer to store the result.
The class list of the window as a string.
import { WinGetClassList } from '@ahmic/autoit-js';const classList = WinGetClassList('Untitled - Notepad');console.log(classList); // Output: "Edit\nButton" Copy
import { WinGetClassList } from '@ahmic/autoit-js';const classList = WinGetClassList('Untitled - Notepad');console.log(classList); // Output: "Edit\nButton"
https://www.autoitscript.com/autoit3/docs/functions/WinGetClassList.htm
Retrieves the class list of a window.