# PdfOrganizerSettings

## Content

# Type Alias: PdfOrganizerSettings

```ts
type PdfOrganizerSettings = object;
```

PDF Organizer dialog settings.

## Properties

### layout?

```ts
optional layout: "Auto" | "OneColumn" | "TwoColumns";
```

PDF Organizer dialog layout type.

#### Default

```ts
The default is 'Auto' - layout will switch to 'OneColumn' for a small device screen.
```

#### Example

```javascript
     options.formFiller = {
           layout: 'OneColumn'
     }
```

***

### title?

```ts
optional title: string;
```

Dialog title.

#### Default

```ts
'PDF Organizer'
```

#### Example

```javascript
      options.pdfOrganizer = {
            title: 'PDF document structure'
      };
```
