Skip to main content
All docs
V20.1
.NET Framework 4.5.2+

PdfTextMarkupAnnotationInfo Class

Provides information about a text markup annotation.

Namespace: DevExpress.Pdf

Assembly: DevExpress.Pdf.v20.1.Drawing.dll

NuGet Package: DevExpress.Pdf.Drawing

Declaration

public class PdfTextMarkupAnnotationInfo :
    PdfMarkupAnnotationInfo

Remarks

The code snippet below shows how to obtain the PdfTextMarkupAnnotationInfo object in the PdfViewer.MarkupAnnotationGotFocus event:

private void pdfViewer1_MarkupAnnotationGotFocus(object sender, PdfMarkupAnnotationGotFocusEventArgs e) {
    PdfTextMarkupAnnotationInfo textMarkupInfo = e.Info as PdfTextMarkupAnnotationInfo;
} 

Inheritance

Object
PdfMarkupAnnotationInfo
PdfTextMarkupAnnotationInfo
See Also