PDFView4NET WPF Edition
FieldBeginEdit Event




O2S.Components.PDFView4NET.WPF Namespace > PDFPageView Class : FieldBeginEdit Event
Gets or sets the event that is fired before a form field enters in edit mode.
Syntax
'Declaration
 
Public Event FieldBeginEdit As EventHandler(Of FieldEditEventArgs)
'Usage
 
Dim instance As PDFPageView
Dim handler As EventHandler(Of FieldEditEventArgs)
 
AddHandler instance.FieldBeginEdit, handler
public event EventHandler<FieldEditEventArgs> FieldBeginEdit
public: __event EventHandler<FieldEditEventArgs*>* FieldBeginEdit
public:
event EventHandler<FieldEditEventArgs^>^ FieldBeginEdit
Event Data

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

PropertyDescription
Gets or sets a value indicating whether field edit is allowed or not.  
Gets the field that has been clicked.  
Gets the field widget that has been 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