Skip to main content
A newer version of this page is available.
All docs
V19.1
.NET Framework 4.5.2+

PdfTextMarkupAnnotationInfo Class

Provides information about a text markup annotation.

Namespace: DevExpress.Pdf

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

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