PowerKeys Scripting API
    Preparing search index...

    Interface WindowBounds

    Win32 outer-window rectangle in physical Windows virtual-screen coordinates. It includes the non-client frame and can differ from the application's client/content rectangle.

    interface WindowBounds {
        x: number;
        y: number;
        width: number;
        height: number;
    }
    Index
    x: number

    Absolute left edge; negative on monitors left of the primary monitor.

    y: number

    Absolute top edge; negative on monitors above the primary monitor.

    width: number

    Outer-window width in physical pixels.

    height: number

    Outer-window height in physical pixels.