PayeeVocCoverage
This property sets or returns the vocabulary coverage parameter for the payee line. This value expresses the occurrence likelihood of the predefined names on the checks.
Define the vocabulary coverage as a LONG value in the range between 1 and 100. The default value is 35.
Syntax
PayeeVocCoverage as Long
Sample Code
Private Sub Document_PreExtract(pWorkdoc as SCBCdrPROJLib.ISCBCdrWorkdoc)
Set ParaCheckSettings = Project.AllClasses(pWorkdoc.DocClassName).Fields("Payee").AnalysisSetting(Project.DefaultLanguage)
ParaCheckSettings.PayeeVocCoverage = 85
End Sub