PdfDocumentOpenMode EnumerationTerminal Works - PDF Printing.Net Library
Determines how a PDF document is opened.

Namespace: PdfEdit.Pdf.IO
Assembly: PdfPrintingNet (in PdfPrintingNet.dll) Version: 5.2.1.0 (5.2.1.0)
Syntax

public enum PdfDocumentOpenMode
Members

  Member nameValueDescription
Modify0 The PDF stream is completely read into memory and can be modified. Pages can be deleted or inserted, but it is not possible to extract pages. This mode is useful for modifying an existing PDF document.
Import1 The PDF stream is opened for importing pages from it. A document opened in this mode cannot be modified.
ReadOnly2 The PDF stream is completely read into memory, but cannot be modified. This mode preserves the original internal structure of the document and is useful for analyzing existing PDF files.
InformationOnly3 The PDF stream is partially read for information purposes only. The only valid operation is to call the Info property at the imported document. This option is very fast and needs less memory and is e.g. useful for browsing information about a collection of PDF documents in a user interface.
See Also

Reference