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



In This Topic

    AfterFieldsValidation Event

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

    PropertyDescription
    Specifies the extracted fields of the document.  
    See Also