BackgroundColorValid

This property sets or returns the color for the verification field to display to the user when the field does not require manual verification. When the field is Valid in Verifier, the color that is set displays to the user. By default, the valid background color of the field is green.

Syntax

BackgroundColorValid as OLE_COLOR

Sample Code

The following sample code sets the color for the Invoice Number field to gray if it is Valid.

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").BackgroundColorValid = RGB (192, 129, 129)

See also