# PageMode

## Content

# Enumeration: PageMode

Specifies how the document should be displayed when opened.
NOTE! Names of enum items should match PDF specification see PDF1.7page140.

## Enumeration Members

### Automatic

```ts
Automatic: 0;
```

Document outline visible if available.

***

### FullScreen

```ts
FullScreen: 4;
```

Full-screen mode, with no menu bar, window controls, or any other window visible.

***

### UseAttachments

```ts
UseAttachments: 6;
```

(PDF 1.6) Attachments panel visible.

***

### UseNone

```ts
UseNone: 1;
```

Neither document outline nor thumbnail images visible.

***

### UseOC

```ts
UseOC: 5;
```

(PDF 1.5) Optional content group panel visible.

***

### UseOutlines

```ts
UseOutlines: 2;
```

Document outline visible.

***

### UseThumbs

```ts
UseThumbs: 3;
```

Thumbnail images visible.
