Retrieves the client area dimensions of a window.
The title of the window to access.
Optional text found in the window.
An object containing the width and height of the client area.
import { WinGetClientSize } from '@ahmic/autoit-js';const clientSize = WinGetClientSize('Untitled - Notepad');console.log(clientSize); // Output: { width: 800, height: 600 } Copy
import { WinGetClientSize } from '@ahmic/autoit-js';const clientSize = WinGetClientSize('Untitled - Notepad');console.log(clientSize); // Output: { width: 800, height: 600 }
https://www.autoitscript.com/autoit3/docs/functions/WinGetClientSize.htm
Retrieves the client area dimensions of a window.