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



In This Topic

    AfterFieldsExtraction Event

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

    PropertyDescription
    Specifies the extracted fields of the document.  
    See Also