'Declaration
Public Event AfterFieldsValidation As EventHandler(Of AfterFieldsValidationArgs)
'Usage
Dim instance As DocumentProcessor Dim handler As EventHandler(Of AfterFieldsValidationArgs) AddHandler instance.AfterFieldsValidation, handler
public event EventHandler<AfterFieldsValidationArgs> AfterFieldsValidation
public: event EventHandler<AfterFieldsValidationArgs^>^ AfterFieldsValidation
Event Data
The event handler receives an argument of type AfterFieldsValidationArgs containing data related to this event. The following AfterFieldsValidationArgs properties provide information specific to this event.
Property | Description |
---|---|
ExtractedFields | Specifies the extracted fields of the document. |
See Also