# PageLayout

## Content

# Enumeration: PageLayout

Specifies the page layout to be used when the document is opened.
NOTE! Names of enum items should match PDF specification see PDF1.7page140.

## Enumeration Members

### OneColumn

```ts
OneColumn: 1;
```

Display the pages in one column.

***

### SinglePage

```ts
SinglePage: 0;
```

Display one page at a time.

***

### TwoColumnLeft

```ts
TwoColumnLeft: 2;
```

Display the pages in two columns, with odd-numbered pages on the left.

***

### TwoColumnRight

```ts
TwoColumnRight: 3;
```

Display the pages in two columns, with odd-numbered pages on the right.

***

### TwoPageLeft

```ts
TwoPageLeft: 4;
```

(PDF 1.5) Display the pages two at a time, with odd-numbered pages on the left.

***

### TwoPageRight

```ts
TwoPageRight: 5;
```

(PDF 1.5) Display the pages two at a time, with odd-numbered pages on the right.
