BackgroundColorInvalid
This property sets or returns the color for the verification field to display to the user when the field required manual verification. When the field is invalid in Verifier, the color that is set displays to the user. By default, the invalid background color of the field is red.
Syntax
BackgroundColorInvalid as OLE_COLOR
Sample Code
The following sample code sets the background color for the Invoice Number field to gray if it is Invalid.
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("InvoiceNo").BackgroundColorInvalid = RGB (192, 129, 129)