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



In This Topic

    BeforeClassification Event

    In This Topic
    Occurs prior the classification stage.
    Syntax
    'Declaration
     
    
    Public Event BeforeClassification As EventHandler(Of BeforeClassificationArgs)
    'Usage
     
    
    Dim instance As DocumentProcessor
    Dim handler As EventHandler(Of BeforeClassificationArgs)
     
    AddHandler instance.BeforeClassification, handler
    public event EventHandler<BeforeClassificationArgs> BeforeClassification
    public:
    event EventHandler<BeforeClassificationArgs^>^ BeforeClassification
    Event Data

    The event handler receives an argument of type BeforeClassificationArgs containing data related to this event. The following BeforeClassificationArgs properties provide information specific to this event.

    PropertyDescription
    Specifies if the classification must be cancelled.  
    See Also