About Boosting Tables - Designer - Foundation 23.1 - Foundation 23.1 - Brainware - external - Brainware/Designer/Foundation-23.1/Brainware-Intelligent-Capture-Designer/Recognition/Digit-Booster-Engine/About-Boosting-Tables - 2024-01-22 - The Boost digits only option does not work for table fields. This limitation can be circumvent using a script. For table fields, use the pTable.IsColumnNumeric column-level property at the very end of the Document_PostExtract event. Set the isColumnNumeric property to False to disable alpha to digit boosting.

Brainware Intelligent Capture Designer

Platform
Brainware
Product
Designer
Release
Foundation 23.1
License

The Boost digits only option does not work for table fields. This limitation can be circumvent using a script. For table fields, use the pTable.IsColumnNumeric column-level property at the very end of the Document_PostExtract event. Set the isColumnNumeric property to False to disable alpha to digit boosting.

Example: Boosting tables

Private Sub Document_PostExtract(pWorkdoc As SCBCdrPROJLib.SCBCdrWorkdoc)
   Dim pField As SCBCdrField
   Set pField = pWorkdoc.Fields.ItemByName("LineItems")
   pField.Table(pField.ActiveTableIndex).IsColumnNumeric("Date") = False
   pField.Table(pField.ActiveTableIndex).IsColumnNumeric("Unit Price") = True
   pField.Table(pField.ActiveTableIndex).IsColumnNumeric("Quantity") = True
   pField.Table(pField.ActiveTableIndex).IsColumnNumeric("Total") = True
End Sub