'Declaration
Public Event FieldContextMenu As EventHandler(Of FieldContextMenuEventArgs)
'Usage
Dim instance As PDFPageView Dim handler As EventHandler(Of FieldContextMenuEventArgs) AddHandler instance.FieldContextMenu, handler
public event EventHandler<FieldContextMenuEventArgs> FieldContextMenu
public: __event EventHandler<FieldContextMenuEventArgs*>* FieldContextMenu
public: event EventHandler<FieldContextMenuEventArgs^>^ FieldContextMenu
Event Data
The event handler receives an argument of type FieldContextMenuEventArgs containing data related to this event. The following FieldContextMenuEventArgs 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. |
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