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

In This Topic
    SaveMode Enumeration
    In This Topic
    Defines the modes of saving a PDF.
    Syntax
    'Declaration
     
    Public Enum SaveMode 
       Inherits System.Enum
    public enum SaveMode : System.Enum 
    Members
    MemberDescription
    DefaultDefault mode. In this mode, the PDF is not linearized and incremental update is not used.
    IncrementalUpdateThe document is saved using incremental update.

    Note that this method is not applicable if the current PDF was created from scratch (i.e. an existing PDF was not loaded). In that case this value will be ignored and Default will be used.

    LinearizedThe document is saved as a linearized ("fast web view") PDF.
    Inheritance Hierarchy

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

    See Also