'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.
Property | Description |
---|---|
Field | Gets the field that has been clicked. |
FieldWidget | Gets the field widget that has been clicked. |
MouseButton | Gets the mouse button that was clicked on the field widget. |
MousePosition | Gets the position where the mouse was clicked. |
Page | 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