PDFView4NET WinForms Edition
FieldContextMenu Event




O2S.Components.PDFView4NET Namespace > PDFPageView Class : FieldContextMenu Event
Gets or sets the event that is fired when a context menu should be displayed for the form field.
Syntax
'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.

PropertyDescription
Gets the field that has been clicked.  
Gets the field widget that has been clicked.  
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