Table of Contents

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 = 1

Pages in one continuous vertical column.

SinglePage = 0

One page at a time (most readers' default).

TwoColumnLeft = 2

Two continuous columns, odd-numbered pages on the left.

TwoColumnRight = 3

Two continuous columns, odd-numbered pages on the right (cover on its own).

TwoPageLeft = 4

Two pages side by side, odd-numbered pages on the left.

TwoPageRight = 5

Two pages side by side, odd-numbered pages on the right (cover on its own).