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

PdfViewerControl.PageLayout Property

Gets or sets a value that defines the page display mode.

Namespace: DevExpress.Xpf.PdfViewer

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

NuGet Package: DevExpress.Wpf.PdfViewer

Declaration

public PdfPageLayout PageLayout { get; set; }

Property Value

Type Default Description
PdfPageLayout PdfPageLayout.OneColumn

An enumeration value that indicates the page display mode.

Remarks

Example

The code sample below shows how to specify the PageLayout property in code:

<dxpdf:PdfViewerControl x:Name="pdfViewer" 
                        PageLayout="TwoColumnLeft"
                        DocumentSource="Demo.pdf"/> 
See Also