Rectangle

The location of the target area relative to the screen or window. If you do not set this parameter, the SDK selects the whole screen or window.

export class Rectangle {
  
  x?: number;
  
  y?: number;
  
  width?: number;
  
  height?: number;
}

Attributes

x
The horizontal offset from the top-left corner.
y
The vertical offset from the top-left corner.
width
The width of the target area.
height
The height of the target area.