PDFView4NET WinForms Edition
PageDoubleClick Event




O2S.Components.PDFView4NET Namespace > PDFPageView Class : PageDoubleClick Event
Gets or sets the event that is fired when a page is double clicked with the mouse.
Syntax
'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.

PropertyDescription
Gets the control point where the page was clicked.  
Gets the PDF display point where the page was clicked.  
Gets the mouse button that was clicked on the page.  
Gets the number of the page that has been clicked.  
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