'Declaration<CategoryAttribute("PDF")> <DescriptionAttribute("The event that is fired when content is needed for annotation tooltip")> Public Event AnnotationToolTipContentRequested As EventHandler(Of PdfVisualAnnotationToolTipContentRequestedEventArgs)
'UsageDim instance As PdfDocumentView Dim handler As EventHandler(Of PdfVisualAnnotationToolTipContentRequestedEventArgs) AddHandler instance.AnnotationToolTipContentRequested, handler
[Category("PDF")] [Description("The event that is fired when content is needed for annotation tooltip")] public event EventHandler<PdfVisualAnnotationToolTipContentRequestedEventArgs> AnnotationToolTipContentRequested
[Category("PDF")] [Description("The event that is fired when content is needed for annotation tooltip")] public: event EventHandler<PdfVisualAnnotationToolTipContentRequestedEventArgs^>^ AnnotationToolTipContentRequested
Event Data
The event handler receives an argument of type PdfVisualAnnotationToolTipContentRequestedEventArgs containing data related to this event. The following PdfVisualAnnotationToolTipContentRequestedEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| Contents | Gets or sets the contents of annotation tooltip. |
| Title | Gets or sets the title of annotation tooltip. |
| VisualAnnotation | Gets the annotation. (Inherited from Xfinium.Pdf.View.PdfVisualAnnotationEventArgs) |
Requirements
Supported .NET Platforms: .NET 4.0 and higher, Windows Forms
Target Platforms:Windows 10, Windows 8.1, Windows 8 , Windows 7, Windows Vista SP1 or later, Windows Server 2008, Windows Server 2008 R2
See Also