PostEvaluate
This event triggers after the evaluation step performs. It is possible to examine the list of all candidates and to change their weights.
Syntax
<Fieldn>_PostEvaluate (pField as ISCBCdrField, pWorkdoc as ISCBCdrWorkdoc)
Parameter | Description |
---|---|
pField | Object containing the field |
pWorkdoc | Current workdoc object |
Sample Code
Private Sub MyField_PostEvaluate(pField as SCBCdrField, pWorkdoc as SCBCdrWorkdoc)
'set the weight of the first candidate to 1
If pField.CandidateCount > 0 then
pField.Candidate(0).Weight = 1
End if
End Sub