Name

This read-only property provides the Name of the field label on the Verifier form.

Sample Code

The following sample code returns the name of the Invoice Number field label 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.VerificationLabels.ItemByName("Label_InvoiceNo").Name