ForceClassificationReview

This property provides the ability to force a manual classification review even if the classification succeeded. Set or return this property in the PostClassify event.

Syntax

ForceClassificationReview as Boolean

Sample Code

The following sample code shows how to force the manual classification process from the script event "PostClassify".

Private Sub ScriptModule_PostClassify(pWorkdoc as SCBCdrPROJLib.SCBCdrWorkdoc)
   If pWorkdoc.DocClassName = "VeryImportantClass" Then
      pWorkdoc.ForceClassificationReview = True
   End If
End Sub