BackgroundColor
This property sets or returns the color for the verification text label to display to the user. By default, the background color of the field is gray.
Syntax
BackgroundColor as OLE_COLOR
Sample Code
The following sample code sets the InvoiceNo label color 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.VerificationLabels.ItemByName("Label_InvoiceNo").BackgroundColor = RGB (192, 129, 129)