PdfAnnotationLostFocusEventArgs.Annotation Property
In This Article
Gets the annotation that got focus.
Namespace: DevExpress.Xpf.PdfViewer
Assembly: DevExpress.Xpf.PdfViewer.v24.2.dll
NuGet Package: DevExpress.Wpf.PdfViewer
#Declaration
public IPdfViewerAnnotation Annotation { get; }
#Property Value
Type | Description |
---|---|
IPdf |
The target annotation. |
#Remarks
Use the DevExpress.Pdf.PdfViewerAnnotationExtensions class methods to obtain a specific type of annotation:
- PdfViewerAnnotationExtensions.AsTextMarkupAnnotation - for text markup annotations;
- PdfViewerAnnotationExtensions.AsTextAnnotation - for text annotations (or sticky notes);
- PdfViewerAnnotationExtensions.AsMarkupAnnotation(IPdfViewerAnnotation) - for markup annotations (sticky notes and text markup).
See Also