'Declaration
Public Event AfterClassification As EventHandler(Of AfterClassificationArgs)
'Usage
Dim instance As DocumentProcessor Dim handler As EventHandler(Of AfterClassificationArgs) AddHandler instance.AfterClassification, handler
public event EventHandler<AfterClassificationArgs> AfterClassification
public: event EventHandler<AfterClassificationArgs^>^ AfterClassification
Event Data
The event handler receives an argument of type AfterClassificationArgs containing data related to this event. The following AfterClassificationArgs properties provide information specific to this event.
Property | Description |
---|---|
Template | Specifies the template associated to the classified document. |
See Also