Type

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

The scripter can choose to review information based on the field type.

Sample Code

The following sample code returns the field type information of the InvoiceNo field from the Verifier form.

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

See also