for GdPicture.NET
XTractFlow.API Namespace / DocumentProcessor Class / BeforeFieldsExtraction Event



In This Topic

    BeforeFieldsExtraction Event

    In This Topic
    Occurs prior the fields extraction stage.
    Syntax
    '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.

    PropertyDescription
    Specifies if the fields extraction must be cancelled.  
    See Also