FieldState
This property sets or returns the current execution state of the field.
Syntax
FieldState as CDRFieldState
Sample Code
Private Sub Document_PreExtract(pWorkdoc as SCBCdrWorkdoc)
Dim MyResult as string
MyResult = DoSomeMagic(pWorkdoc)
If (len(MyResult) > 0) then
'assign result to a single field
pWorkdoc.Fields("Number") = MyResult;
'skip defined analysis and evaluation methods
pWorkdoc.Fields("Number").FieldState = CDRFieldStateEvaluated
End if
End Sub