PDFView4NET WinForms Edition
FieldClick Event




O2S.Components.PDFView4NET Namespace > PDFPageView Class : FieldClick Event
Gets or sets the event that is fired when a form field is clicked with the mouse.
Syntax
'Declaration
 
Public Event FieldClick As EventHandler(Of FieldClickEventArgs)
'Usage
 
Dim instance As PDFPageView
Dim handler As EventHandler(Of FieldClickEventArgs)
 
AddHandler instance.FieldClick, handler
public event EventHandler<FieldClickEventArgs> FieldClick
public: __event EventHandler<FieldClickEventArgs*>* FieldClick
public:
event EventHandler<FieldClickEventArgs^>^ FieldClick
Event Data

The event handler receives an argument of type FieldClickEventArgs containing data related to this event. The following FieldClickEventArgs properties provide information specific to this event.

PropertyDescription
Gets the field that has been clicked.  
Gets the field widget that has been clicked.  
Gets the mouse button that was clicked on the field widget.  
Gets the position where the mouse was clicked.  
Gets the page where the clicked field widget appears.  
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