Skip to content

PDFVisualTextMarkupAnnotation

Namespace: O2S.Components.PDF4NET.View.Annotations

Defines a text markup annotation that is displayed in a PDFDocumentView control.

public class PDFVisualTextMarkupAnnotation : PDFVisualAnnotation

Inheritance ObjectPDFVisualAnnotationPDFVisualTextMarkupAnnotation

Constructors

PDFVisualTextMarkupAnnotation(PDFTextMarkupAnnotation)

Initializes a new PDFVisualTextMarkupAnnotation object.

public PDFVisualTextMarkupAnnotation(PDFTextMarkupAnnotation annotation)

Parameters

annotation PDFTextMarkupAnnotation
The underlying PDF annotation.


Properties

Annotation

Gets the underlying PDF annotation.

public PDFAnnotation Annotation { get; }

Property Value

PDFAnnotation
A PDF annotation.


DisplayRectangle

Gets or sets the visual rectangle of this annotation.

public PDFDisplayRectangle DisplayRectangle { get; set; }

Property Value

PDFDisplayRectangle
A that represents the position and size of the annotation on the page.

Remarks

The visual rectangle is relative to the top left corner of the page.


NormalAppearance

Gets or sets the annotation normal appearance.

public PDFAnnotationAppearance NormalAppearance { get; set; }

Property Value

PDFAnnotationAppearance
A specifying how the annotation is presented visually on the page.


Tag

Gets or sets an object that contains user-defined data associated with the annotation.

public object Tag { get; set; }

Property Value

Object

Remarks

This property can be used to store any custom information relevant to the annotation at runtime. The value is not used by the annotation itself and is intended solely for application-specific data.
NOTE: The value of this property is not persisted in the PDF file.


TextMarkupColor

Gets or sets the annotation markup color.

public PDFColor TextMarkupColor { get; set; }

Property Value

PDFColor
The annotation markup color.

Exceptions

ArgumentOutOfRangeException
Thrown when the property is set to a color other than Gray, RGB or CMYK.


VisualPage

Gets the page that owns the anotation.

public PDFVisualPage VisualPage { get; internal set; }

Property Value

PDFVisualPage
The PDFVisualPage that owns the annotation.