Invisible

This property sets or returns if the field label is visible or hidden on the Verifier form. The developer can script options to hide or display the field label from the verifier user.

Syntax

Invisible as Boolean

Sample Code

The following sample code hides the Invoice Number field label from the verifier user.

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").Invisible = True
' Update the form
theVerificationForm.RepaintControls