PCReReadAlways

Use this named property to enable re-analyzing the Check Analysis Engine fields. This is helpful if you need to perform Designer or scripting testing, such as for document rotation. It is also helpful if you change one of the Check Analyses Engine settings. By default, re-analysis is switched off.

Syntax

pWorkdoc.NamedProperty ("PCReReadAlways")
Parameter Description
True The Check Analysis Engine repeats the analysis, if
  • Executed in the Designer's Definition Mode for extraction.
  • The AnalyzeField method is used in the script. If AnalyzeField is used on a Check Analysis Engine field, all fields with Check Analysis Engine assigned are re-analyzed. The "<Field>_PostAnalysis" event only triggers for the field for which the analyzed field was triggered.
  • AnalyzeDocument is used in script.
False Default value.

The Check Analysis Engine does not execute a secondary analysis on a document when BIC did not unload the document from the memory.

Sample Code

Private Sub Document_PreExtract(pWorkdoc as SCBCdrPROJLib.ISCBCdrWorkdoc)
   pWorkdoc.NamedProperty("PCReReadAlways") = True   'Switch on re-Analysis
End Sub