# PrintOrientation

> _Since v1.4.0_

Page orientation for the print layout.

- `'portrait'` — Taller than wide. Best for grids with few columns.
- `'landscape'` — Wider than tall. Preferred when many columns need to fit on one page.

Applied via a `@page { size }` CSS rule in the print stylesheet.

```ts
type PrintOrientation = "portrait" | "landscape"
```
