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