Property |
Description |
Property Value |
Description |
public string Author { get; set; } |
Gets or sets the author of the PDF file. |
value |
The author. The default value is an empty string. |
public string Title { get; set; } |
Gets or sets the title of the PDF file. |
value |
The title. The default value is an empty string. |
public string Subject { get; set; } |
Gets or sets the subject of the PDF file. |
value |
The subject. The default value is an empty string. |
public string Keywords { get; set; } |
Gets or sets the keywords for the PDF file. |
value |
The keywords. The default value is an empty string. |
public string Creator { get; set; } |
Gets or sets the creator of the PDF file. |
value |
The creator. The default value is an empty string. |
public bool DisplayDocTitle { get; set; } |
Gets or sets a value that indicates whether the window's title bar displays the title specified for the PDF file. This property sets a flag that specifies whether the window’s title bar should display the document title taken from the Title entry of the document information dictionary. Set the title by setting the Title property. If the DisplayDocTitle property is false, the title bar displays the name of the PDF file instead. |
value |
True if the window's title bar displays the title specified for the PDF file; otherwise, false. The default value is false, which means the window's title bar displays the PDF file name. |
public bool HideMenubar { get; set; } |
Gets or sets a value that indicates whether to hide the viewer application’s menu bar when the document is active. |
value |
True if the viewer application hides its menu bar; otherwise, false. The default value is false. |
public bool HideToolbar { get; set; } |
Gets or sets a value that specifies whether to hide the viewer application’s toolbars when the document is active. |
value |
True if the viewer application hides its toolbars; otherwise, false. The default value is false. |
public bool HideWindowUI { get; set; } |
Gets or sets a value that specifies whether to hide user interface elements for the document. This property specifies whether to hide user interface elements, such as scroll bars and navigation controls, when displaying the document. Only the document’s contents are displayed if this property is true. |
value |
True if the document's user interface elements are hidden; otherwise, false. The default value is false. |
public bool CenterWindow { get; set; } |
Gets or sets a value that specifies whether to center the document in the window. |
value |
True if the document is to be centered in the display window; otherwise, false. The default value is false. |
public bool FitWindow { get; set; } |
Gets or sets a value that specifies whether to resize the document’s window to fit the size of the first displayed page. |
value |
True if the document's window is resized; otherwise, false. |
public OpenType OpenType { get; set; } |
Gets or sets how to display the document when it is opened. |
value |
A value that specifies how to display the document. The default value is OpenType.Auto. |
public PageLayoutType PageLayout { get; set; } |
Gets or sets the page layout to be used when the document is opened. |
value |
A value that specifies the page layout for the document. The default value is PageLayoutType.Auto. |
public int PageDuration { get; set; } |
Gets or sets an integer value that indicates the duration in seconds for the current page during a presentation. |
value |
The duration of the page. |
public PageTransitionType PageTransition { get; set; } |
Gets or sets the transition style to use when moving to this page from another during a presentation. |
value |
The page transition. The default value is PageTransitionType.Default. |
public DestinationType DestinationType { get; set; } |
Gets or sets a value that indicates how to open the document. |
value |
A value that indicates how to open the document. The default value is DestinationType.Auto. |
public int OpenPageNumber { get; set; } |
Gets or sets the page number of the page to display when the document is opened. |
value |
The page number to display. The default value is 1. |
public PrintPreset PrintPreset { get; set; } |
Gets the print settings for the PDF viewer. |
value |
The print settings for the viewer. The default value is never null. |
public List<DocumentAttachment> DocumentAttachments { get; set; } |
Gets the document attachments. |
value |
The document attachments. The default value is never null. |