DocClassName

This property sets or returns the name of the DocClass to which the document was classified.

Syntax

DocClassName as String

Sample Code

Private Sub ScriptModule_PreClassify(pWorkdoc as SCBCdrWorkdoc)
   If ( DoSomeMagic(pWorkdoc) = TRUE ) then
      'assign "Invoice" as result of the classification
      pWorkdoc.DocClassName = "Invoice"
   else
      'do nothing and continue with normal classification
   End if
End Sub