AllowInteractiveExtraction
This property sets or returns if table correction is enabled.
Syntax
AllowInteractiveExtraction as Boolean
Possible values
- True: Table correction in Verifier is enabled, but the table is not impacted by learning.
- False: Table correction in Verifier is disabled.
Sample Code
The following sample code looks at a field and determines if the LineItems (Brainware Table Extraction Field) are configured for automatic extraction.
Private Sub Document_FocusChanged(pWorkdoc as SCBCdrPROJLib.SCBCdrWorkdoc, ByVal Reason as SCBCdrPROJLib.CdrFocusChangeReason, ByVal OldFieldIndex as Long, pNewFieldIndex as Long)
If pWorkdoc.Fields.ItemByName("InteractiveTableExtractionAllowed").Text = "No" Then
Project.AllClasses.ItemByName(pWorkdoc.DocClassName).Fields.ItemByName("LineItems").AllowInteractiveExtraction = False
Else
Project.AllClasses.ItemByName(pWorkdoc.DocClassName).Fields.ItemByName("LineItems").AllowInteractiveExtraction = True
End If
End Sub