'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.
Property | Description |
---|---|
AllowEdit | Gets or sets a value indicating whether field edit is allowed or not. |
Field | Gets the field that has been clicked. |
FieldWidget | Gets the field widget that has been 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