PDFView4NET WinForms Edition
PageClick Event (PDFPageView)




O2S.Components.PDFView4NET Namespace > PDFPageView Class : PageClick Event
Gets or sets the event that is fired when a page is clicked with the mouse.
Syntax
'Declaration
 
Public Event PageClick As EventHandler(Of PageClickEventArgs)
'Usage
 
Dim instance As PDFPageView
Dim handler As EventHandler(Of PageClickEventArgs)
 
AddHandler instance.PageClick, handler
public event EventHandler<PageClickEventArgs> PageClick
public: __event EventHandler<PageClickEventArgs*>* PageClick
public:
event EventHandler<PageClickEventArgs^>^ PageClick
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