Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf Namespace / PdfStreamHandling Enumeration

In This Topic
    PdfStreamHandling Enumeration
    In This Topic
    Defines how to process existing PDF streams in a loaded document.
    Syntax
    'Declaration
     
    Public Enum PdfStreamHandling 
       Inherits System.Enum
    public enum PdfStreamHandling : System.Enum 
    Members
    MemberDescription
    CopyCopy the content of the original stream to the output as is without any changes. Note that GcPdfDocument.CompressionLevel will not affect any existing streams in this case, and will only be used for saving streams that were added after loading the document.
    MinimizeSizeCopy the existing streams as-is (see Copy), or re-compress them (see UseCompressionLevel), achieving the smallest possible size.
    UseCompressionLevelDecompress existing PDF streams and re-compress them using GcPdfDocument.CompressionLevel.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             GrapeCity.Documents.Pdf.PdfStreamHandling

    See Also