Skip to main content
A newer version of this page is available.
All docs
V18.2

PdfTextMarkupAnnotationInfo Class

Provides information about a text markup annotation.

Namespace: DevExpress.Pdf

Assembly: DevExpress.Pdf.v18.2.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