'Declaration
Public Event BeforeFieldsExtraction As EventHandler(Of BeforeFieldsExtractionArgs)
'Usage
Dim instance As DocumentProcessor Dim handler As EventHandler(Of BeforeFieldsExtractionArgs) AddHandler instance.BeforeFieldsExtraction, handler
public event EventHandler<BeforeFieldsExtractionArgs> BeforeFieldsExtraction
public: event EventHandler<BeforeFieldsExtractionArgs^>^ BeforeFieldsExtraction
Event Data
The event handler receives an argument of type BeforeFieldsExtractionArgs containing data related to this event. The following BeforeFieldsExtractionArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Specifies if the fields extraction must be cancelled. |
See Also