PostExtract

This event triggers after all defined analysis or evaluation methods execute by the Cedar DocClass. During this event, it is possible to examine and change the results of one or more fields of the document.

You can also use this event in combination with generic Designer settings to establish multiple classifications. In Designer, establish a default classification result. Then set "pWorkdoc.DocClassName" to a different class in this event. This technique enables you to keep the generic extraction pointed toward the default class while moving the validation script to a different class.

Syntax

Document_PostExtract (pWorkdoc as ISCBCdrWorkdoc)
Description Definition
pWorkdoc Current workdoc object

Sample Code

Private Sub Document_PostExtract(pWorkdoc as SCBCdrWorkdoc)
   Dim Number as string
   Dim Name as string
   'get fields name and number 
   Number = pWorkdoc.Fields("Number")
   Name = pWorkdoc.Fields("Name")
End Sub