Font
This property sets or returns the font for the content of the verification field.
Sample Code
The following sample code sets the font for the InvoiceNo field.
Dim theVerificationProject as DISTILLERVERIFIERCOMPLib.SCBCdrVerificationProject
Dim theVerificationForm as DISTILLERVERIFIERCOMPLib.SCBCdrVerificationForm
Dim DefaultFieldFont as New StdFont
DefaultFieldFont.Bold = False 'Set Font attributes
' Request the main form
Project.GetVerifierProject theVerificationProject
Set theVerificationForm = theVerificationProject.AllVerificationForms.ItemByName("Invoices")
theVerificationForm.VerificationFields.ItemByName("Field_InvoiceNo").Font = DefaultFieldFont