VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Pdf Namespace / PdfAnnotationRenderingMode Enumeration
Syntax Members Remarks Hierarchy Requirements SeeAlso
In This Topic
    PdfAnnotationRenderingMode Enumeration
    In This Topic
    Specifies available rendering modes of PDF annotations.
    Syntax
    'Declaration
    
    <FlagsAttribute()>
    Public Enum PdfAnnotationRenderingMode
       Inherits System.Enum
    
    
    [Flags()]
    public enum PdfAnnotationRenderingMode : System.Enum
    
    
    [Flags()]
    __value public enum PdfAnnotationRenderingMode : public System.Enum
    
    
    [Flags()]
    public enum class PdfAnnotationRenderingMode : public System.Enum
    
    
    Members
    MemberDescription
    NoneDo not render annotations.
    VintasoftAnnotationsRender annotations generated by VintaSoft Annotation .NET Plugin.
    NonMarkupAnnotationsRender non-markup annotations (i.e. widget annotations).
    MarkupAnnotationsRender markup annotations (i.e. text annotations).
    AnnotationsRender all annotations regardless of their type.
    RenderInvisibleRender annotations with enabled flag 'Invisible'.
    RenderHiddenRender annotations with enabled flag 'Hidden'.
    RenderPrintableRender annotations with enabled flag 'Print'.
    RenderNoViewRender annotations with enabled flag 'NoView'.
    RenderDisplayableRender annotations with disabled flags 'Invisible', 'Hidden', 'Print' and 'NoView'.
    RenderAllRender all annotations regardless of their flags.
    Remarks

    Annotation type and annotation flags are obligatory for annotation rendering.

    Examples:

    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Vintasoft.Imaging.Pdf.PdfAnnotationRenderingMode

    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also