> ## 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.

# PDFMarginOptions

Input options for defining page margins for PDF generation.
All values are strings that must include units (e.g., `"1cm"`, `"0.5in"`, `"10px"`).

## Definition

```graphql theme={null}
input PDFMarginOptions {
  bottom: String
  left: String
  right: String
  top: String
}
```

## Fields

### `bottom`

[String](/reference/graphql/scalars/string)

Bottom margin. Example: `"1cm"`.

### `left`

[String](/reference/graphql/scalars/string)

Left margin. Example: `"1cm"`.

### `right`

[String](/reference/graphql/scalars/string)

Right margin. Example: `"1cm"`.

### `top`

[String](/reference/graphql/scalars/string)

Top margin. Example: `"1cm"`.
