PCDateHint

Use this named property to configure the reference date for the check date recognition by the Check Analysis Engine. By default, the program uses the system date.

Syntax

pWorkdoc.NamedProperty ("PCDateHint")
Parameter Description
Format Use the following format for the reference date.

YYYY.MM.DD

Example

2015.06.18

Note: To set the reference date to the system date, add an empty string.

Sample Code

Private Sub Document_PreExtract(pWorkdoc as SCBCdrPROJLib.ISCBCdrWorkdoc)
   pWorkdoc.NamedProperty("PCDateHint") = "2013.04.12" 'April 12th 2012
End Sub

The following example sets the reference date to the system date:

Private Sub Document_PreExtract(pWorkdoc as SCBCdrPROJLib.ISCBCdrWorkdoc)
   pWorkdoc.NamedProperty("PCDateHint") = " " 'System date
End Sub