'Declaration
Public Event FieldValidate As EventHandler(Of FieldValidateEventArgs)
'Usage
Dim instance As PDFPageView Dim handler As EventHandler(Of FieldValidateEventArgs) AddHandler instance.FieldValidate, handler
public event EventHandler<FieldValidateEventArgs> FieldValidate
public: __event EventHandler<FieldValidateEventArgs*>* FieldValidate
public: event EventHandler<FieldValidateEventArgs^>^ FieldValidate
Event Data
The event handler receives an argument of type FieldValidateEventArgs containing data related to this event. The following FieldValidateEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Field | Gets the field that has been validated. |
FieldWidget | Gets the field widget that has been clicked. |
IsValid | Gets or sets a value indicating whether field value is valid or not. |
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