'Declaration
Public Event AnnotationToolTipDraw As EventHandler(Of AnnotationToolTipDrawEventArgs)
'Usage
Dim instance As PDFPageView Dim handler As EventHandler(Of AnnotationToolTipDrawEventArgs) AddHandler instance.AnnotationToolTipDraw, handler
public event EventHandler<AnnotationToolTipDrawEventArgs> AnnotationToolTipDraw
public: __event EventHandler<AnnotationToolTipDrawEventArgs*>* AnnotationToolTipDraw
public: event EventHandler<AnnotationToolTipDrawEventArgs^>^ AnnotationToolTipDraw
Event Data
The event handler receives an argument of type AnnotationToolTipDrawEventArgs containing data related to this event. The following AnnotationToolTipDrawEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Annotation | Gets the annotation for which the tooltip needs to be drawn. |
Bounds | Gets the size and location of the annotation tooltip to draw. |
Font | Gets the font used to draw the annotation tooltip. |
Graphics | Gets the graphics surface used to draw the annotation tooltip. |
ToolTipText | Gets the text for the annotation tooltip that is being drawn. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also