Enum PdfPageLayout
- Namespace
- NetPdf
- Assembly
- NetPdf.dll
The page layout a PDF reader uses when it first opens the document (ISO 32000-2 ยง7.7.2, catalog
/PageLayout). Controls how many pages are shown side by side and whether the first page is
treated as a cover.
public enum PdfPageLayout
Fields
OneColumn = 1Pages in one continuous vertical column.
SinglePage = 0One page at a time (most readers' default).
TwoColumnLeft = 2Two continuous columns, odd-numbered pages on the left.
TwoColumnRight = 3Two continuous columns, odd-numbered pages on the right (cover on its own).
TwoPageLeft = 4Two pages side by side, odd-numbered pages on the left.
TwoPageRight = 5Two pages side by side, odd-numbered pages on the right (cover on its own).