PowerKeys Scripting API
    Preparing search index...

    Interface WindowInfo

    Information about a window returned by the Window API.

    interface WindowInfo {
        id: string;
        title: string;
        className: string;
        processName: string;
        pid: number;
        bounds: WindowBounds;
        clientBounds: WindowBounds | null;
    }

    Hierarchy (View Summary)

    Index
    id: string

    Opaque window identifier (string-encoded handle). Pass to other Window methods.

    title: string

    The window title bar text.

    className: string

    The native Win32 window class name.

    processName: string

    Executable file name of the owning process (e.g. "chrome.exe").

    pid: number

    Windows process ID of the owning process.

    bounds: WindowBounds

    Outer window rectangle in physical virtual-screen coordinates.

    clientBounds: WindowBounds | null

    Client-area rectangle in physical virtual-screen coordinates, or null if Windows cannot resolve it.