PdfPageMode Enum

Wordize.Saving.PdfPageMode enum. Specifies how the PDF document should be displayed when opened in the PDF reader.

PdfPageMode enumeration

Specifies how the PDF document should be displayed when opened in the PDF reader.

public enum PdfPageMode

Values

NameValueDescription
UseNone0Neither document outline nor thumbnail images are visible.
UseOutlines1Document outline is visible. Note that if there’re no outlines in the PDF document then outline navigation pane will not be visible anyway.
UseThumbs2Thumbnail images are visible.
FullScreen3Full-screen mode, with no menu bar, window controls, or any other window visible.
UseOC4Optional content group panel is visible.
UseAttachments5Attachments panel is visible.

Examples

Shows how to configure page mode in PDF.

PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
pdfSaveOptions.PageMode = PdfPageMode.UseThumbs;

Converter.Create()
    .From(MyDir + "TestSpliter.docx")
    .To(ArtifactsDir + "PdfSaveOptions.PageMode.pdf", pdfSaveOptions)
    .Execute();

See Also