PDFView4NET WPF Edition
FieldEndEdit Event




O2S.Components.PDFView4NET.WPF Namespace > PDFPageView Class : FieldEndEdit Event
Gets or sets the event that is fired after a form field leaves the edit mode.
Syntax
'Declaration
 
Public Event FieldEndEdit As EventHandler(Of FieldEditEventArgs)
'Usage
 
Dim instance As PDFPageView
Dim handler As EventHandler(Of FieldEditEventArgs)
 
AddHandler instance.FieldEndEdit, handler
public event EventHandler<FieldEditEventArgs> FieldEndEdit
public: __event EventHandler<FieldEditEventArgs*>* FieldEndEdit
public:
event EventHandler<FieldEditEventArgs^>^ FieldEndEdit
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