'Declaration
Public Event PageDoubleClick As EventHandler(Of PageClickEventArgs)
'Usage
Dim instance As PDFPageView Dim handler As EventHandler(Of PageClickEventArgs) AddHandler instance.PageDoubleClick, handler
public event EventHandler<PageClickEventArgs> PageDoubleClick
public: __event EventHandler<PageClickEventArgs*>* PageDoubleClick
public: event EventHandler<PageClickEventArgs^>^ PageDoubleClick
Event Data
The event handler receives an argument of type PageClickEventArgs containing data related to this event. The following PageClickEventArgs properties provide information specific to this event.
Property | Description |
---|---|
ControlPoint | Gets the control point where the page was clicked. |
DisplayPoint | Gets the PDF display point where the page was clicked. |
MouseButton | Gets the mouse button that was clicked on the page. |
PageNumber | Gets the number of the page that has been clicked. |
PDFPoint | Gets the PDF point where the page was clicked. |
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