FontColor
This property sets or returns the font color for the content of the verification field label.
Note: To get the OLE_COLOR object, add OLE Automation as a reference.
Sample Code
The following sample code sets the font color for the InvoiceNo field label to blue.
Dim theVerificationProject as DISTILLERVERIFIERCOMPLib.SCBCdrVerificationProject
Dim theVerificationForm as DISTILLERVERIFIERCOMPLib.SCBCdrVerificationForm
' Request the main form
Project.GetVerifierProject theVerificationProject
Set theVerificationForm = theVerificationProject.AllVerificationForms.ItemByName("Invoices")
theVerificationForm.VerificationLabels.ItemByName("Label_InvoiceNo").FontColor = RGB (0, 0, 255)