TabIndex
This property sets or returns the tab sequence number of the verification field on the Verifier form.
The Tab sequence is typically configured on the verification form in Designer. This script method allows the scripter to change the sequence number to re-ordering Tab sequence of fields.
Sample Code
The following sample code sets the Invoice Number field tab sequence on the Verifier form.
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").TabIndex = 5