VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Pdf.Tree.Annotations Namespace / PdfAnnotationFlags Enumeration
Syntax Members Hierarchy Requirements SeeAlso
In This Topic
    PdfAnnotationFlags Enumeration
    In This Topic
    Specifies available characteristics of the annotation.
    Syntax
    'Declaration
    
    <FlagsAttribute()>
    Public Enum PdfAnnotationFlags
       Inherits System.Enum
    
    
    [Flags()]
    public enum PdfAnnotationFlags : System.Enum
    
    
    [Flags()]
    __value public enum PdfAnnotationFlags : public System.Enum
    
    
    [Flags()]
    public enum class PdfAnnotationFlags : public System.Enum
    
    
    Members
    MemberDescription
    NoneNo flags.
    InvisibleIf set, do not display the annotation if it does not belong to one of the standard annotation types and no annotation handler is available.
    Hidden(PDF 1.2) If set, do not display or print the annotation or allow it to interact with the user, regardless of its annotation type or whether an annotation handler is available.
    Print(PDF 1.2) If set, print the annotation when the page is printed. If clear, never print the annotation, regardless of whether it is displayed on the screen. This can be useful, for example, for annotations representing interactive pushbuttons, which would serve no meaningful purpose on the printed page.
    NoZoom(PDF 1.3) If set, do not scale the annotation's appearance to match the magnification of the page. The location of the annotation on the page (defined by the upper-left corner of its annotation rectangle) remains fixed, regardless of the page magnification.
    NoRotate(PDF 1.3) If set, do not rotate the annotation's appearance to match the rotation of the page. The upper-left corner of the annotation rectangle remains in a fixed location on the page, regardless of the page rotation.
    NoView(PDF 1.3) If set, do not display the annotation on the screen or allow it to interact with the user. The annotation may be printed (depending on the setting of the Print flag) but should be considered hidden for purposes of on-screen display and user interaction.
    ReadOnly(PDF 1.3) If set, do not allow the annotation to interact with the user. The annotation may be displayed or printed (depending on the settings of the NoView and Print flags) but should not respond to mouse clicks or change its appearance in response to mouse motions.
    Locked(PDF 1.4) If set, do not allow the annotation to be deleted or its properties (including position and size) to be modified by the user. However, this flag does not restrict changes to the annotation's contents, such as the value of a form field.
    ToggleNoView(PDF 1.5) If set, invert the interpretation of the NoView flag for certain events.
    LockedContents(PDF 1.7) If set, do not allow the contents of the annotation to be modified by the user. This flag does not restrict deletion of the annotation or changes to other annotation properties, such as position and size.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Vintasoft.Imaging.Pdf.Tree.Annotations.PdfAnnotationFlags

    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