PowerKeys Scripting API
    Preparing search index...

    Interface ScreenSearchRegion

    A non-empty rectangular Screen search area in signed physical Windows virtual-screen coordinates. WindowInfo.bounds is structurally compatible when its measured width and height are greater than zero. Width multiplied by height may not exceed 67,108,864 pixels; a larger capture fails.

    interface ScreenSearchRegion {
        x?: number;
        y?: number;
        width: number;
        height: number;
    }
    Index
    x?: number

    Absolute physical-pixel left edge. Defaults to 0 when omitted.

    y?: number

    Absolute physical-pixel top edge. Defaults to 0 when omitted.

    width: number

    Positive physical-pixel search width.

    height: number

    Positive physical-pixel search height.