Skip to main content
A newer version of this page is available. .

PdfViewerControl.PageLayout Property

Gets or sets a value that defines the manner in which PDF pages are positioned within the PDF viewer.

Namespace: DevExpress.Xpf.PdfViewer

Assembly: DevExpress.Xpf.PdfViewer.v18.2.dll

Declaration

public PdfPageLayout PageLayout { get; set; }

Property Value

Type Description
PdfPageLayout

One of the PdfPageLayout values. The default value is PdfPageLayout.OneColumn.

Available values:

Name Description
SinglePage

The PDF Viewer displays one page at a time.

OneColumn

The PDF Viewer displays pages in one column.

TwoColumnLeft

The PDF Viewer displays the pages in two columns, with odd-numbered pages on the left.

TwoColumnRight

The PDF Viewer displays pages in two columns, with odd-numbered pages on the right.

TwoPageLeft

The PDF Viewer displays the pages two at a time, with odd-numbered pages on the left.

TwoPageRight

The PDF Viewer displays the pages two at a time, with odd-numbered pages on the right.

See Also