'DeclarationPublic Event BeforeClassification As EventHandler(Of BeforeClassificationArgs)
'UsageDim 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.
| Property | Description |
|---|---|
| Cancel | Specifies if the classification must be cancelled. |
See Also