# PageBoundary

## Content

# Enumeration: PageBoundary

Specifies the types of page boundaries. See PDF specification for details.

## Enumeration Members

### ArtBox

```ts
ArtBox: 4;
```

The extent of the pages meaningful content (including potential white space) as intended by the pages creator.

***

### BleedBox

```ts
BleedBox: 2;
```

The region to which the contents of the page should be clipped when output in a production environment.

***

### CropBox

```ts
CropBox: 0;
```

The region to which the contents of the page are to be clipped (cropped) when displayed or printed.

***

### MediaBox

```ts
MediaBox: 1;
```

The boundaries of the physical medium on which the page is to be printed.

***

### TrimBox

```ts
TrimBox: 3;
```

The intended dimensions of the finished page after trimming.
