PdfWriterLayout EnumerationTerminal Works - PDF Printing.Net Library
Determines how the PDF output stream is formatted. Even all formats create valid PDF files, only Compact or Standard should be used for production purposes.

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

public enum PdfWriterLayout
Members

  Member nameValueDescription
Compact0 The PDF stream contains no unnecessary characters. This is default in release build.
Standard1 The PDF stream contains some superfluous line feeds, but is more readable.
Indented2 The PDF stream is indented to reflect the nesting levels of the objects. This is useful for analyzing PDF files, but increases the size of the file significantly.
Verbose3 The PDF stream is indented to reflect the nesting levels of the objects and contains additional information about the PDFEdit objects. Furthermore content streams are not deflated. This is useful for debugging purposes only and increases the size of the file significantly.
See Also

Reference