Bounding rectangle of a window in screen pixel coordinates.

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

Properties

Properties

x: number

Left edge X coordinate.

y: number

Top edge Y coordinate.

width: number

Width in pixels.

height: number

Height in pixels.