forked from Uzi-Granot/PdfFileWriter
-
Notifications
You must be signed in to change notification settings - Fork 1
2.26 Initial Document Display
OgreTransporter edited this page Mar 2, 2020
·
1 revision
The initial document display controls the appearance of your document when it is displayed by the PDF viewer (Acrobat). It controls the left pane of the screen.
For example, open the bookmarks pane.
Document.InitialDocDisplay = InitialDocDisplay.UseBookmarks;
// initial document display enumeration
public enum InitialDocDisplay
{
// keep the left pane closed
UseNone,
// open the bookmarks pane
UseBookmarks,
// open the page thumbnails
UseThumbs,
// full screen mode
FullScreen,
// open layers
UseLayers,
// open attachments
UseAttachments,
}
This page is a copy from https://www.codeproject.com/Articles/570682/PDF-File-Writer-Csharp-Class-Library by Uzi Granot. The article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL). All rights to the texts and source code remain with Uzi Granot.