AutoCompletionEnabled
This property sets or returns the auto-completion setting for a verification field.
Syntax
AutoCompletionEnabled as Boolean
Sample Code
The following sample code turns Auto Completion on for the Invoice Number field.
Dim theVerificationProject as DISTILLERVERIFIERCOMPLib.SCBCdrVerificationProject
Dim theVerificationForm as DISTILLERVERIFIERCOMPLib.SCBCdrVerificationForm
' Request the main form
Project.GetVerifierProject theVerificationProject
Set theVerificationForm = theVerificationProject.AllVerificationForms.ItemByName("Invoices")
theVerificationForm.VerificationFields.ItemByName("Field_InvoiceNo").AutoCompletionEnabled = True