Name

This read-only property returns the name of the field on the Verifier form.

Sample Code

The following sample code returns the name of the Invoice Number field from the Verifier form.

Dim theVerificationProject as DISTILLERVERIFIERCOMPLib.SCBCdrVerificationProject
Dim theVerificationForm as DISTILLERVERIFIERCOMPLib.SCBCdrVerificationForm
Dim FieldName as String
' Request the main form
Project.GetVerifierProject theVerificationProject
Set theVerificationForm = theVerificationProject.AllVerificationForms.ItemByName("Invoices")
FieldName = theVerificationForm.VerificationFields.ItemByName("Field_InvoiceNo").Name