PreExtract

This event triggers before any defined analysis or evaluation method for this field executes by the Cedar DocClass.

Syntax

[FieldName]_PreExtract (pField as ISCBCdrField, pWorkdoc as ISCBCdrWorkdoc)
Parameter Description
pField Object containing the field
pWorkdoc Current workdoc object

Sample Code

Private Sub Today_PreExtract(pField as SCBCdrField, pWorkdoc as SCBCdrWorkdoc)
   'the field Today should contain the processing date of the document
   Dim today as date
   today = Date	
   pField = Format(date, "yyyymmdd")
End Sub