> ## Documentation Index
> Fetch the complete documentation index at: https://docs.extractbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# BoxOptions

Input options for defining a rectangular box, typically used for clipping screenshots or defining element areas.
Coordinates are relative to the top-left corner of the viewport or element.

## Definition

```graphql theme={null}
input BoxOptions {
  x: Int
  y: Int
  width: Int
  height: Int
}
```

## Fields

### `x`

[Int](/reference/graphql/scalars/int)

The x-coordinate of the top-left corner of the box, in pixels.

### `y`

[Int](/reference/graphql/scalars/int)

The y-coordinate of the top-left corner of the box, in pixels.

### `width`

[Int](/reference/graphql/scalars/int)

The width of the box, in pixels.

### `height`

[Int](/reference/graphql/scalars/int)

The height of the box, in pixels.
