FontColor

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

Sample Code

The following sample code sets the font color for the InvoiceNo field to gray.

Dim theVerificationProject as DISTILLERVERIFIERCOMPLib.SCBCdrVerificationProject
Dim theVerificationForm as DISTILLERVERIFIERCOMPLib.SCBCdrVerificationForm
' Request the main form
Project.GetVerifierProject theVerificationProject
Set theVerificationForm = theVerificationProject.AllVerificationForms.ItemByName("Invoices")
theVerificationForm.VerificationFields.ItemByName("Field_InvoiceNo").FontColor = RGB (192, 129, 129)

See also