Font

This property sets or returns the font for the content of the verification field label.

Note: To get the StdFont object, add OLE Automation as a reference.

Sample Code

The following sample code sets the font for Invoice Number field label.

Dim theVerificationProject as DISTILLERVERIFIERCOMPLib.SCBCdrVerificationProject
Dim theVerificationForm as DISTILLERVERIFIERCOMPLib.SCBCdrVerificationForm
Dim DefaultLabelFont as New StdFont
DefaultLabelFont.Bold = False  'Set Font attributes
'Request the main form
Project.GetVerifierProject theVerificationProject
Set theVerificationForm = theVerificationProject.AllVerificationForms.ItemByName("Invoices")
theVerificationForm.VerificationLabels.ItemByName("Label_InvoiceNo").Font = DefaultLabelFont

See also