Invisible
This property sets or returns if the field is visible or hidden from the Verifier or Web Verifier form. The developer uses script options to hide or display the field from the verifier user. In Web Verifier, you can use this property in the VerifierFormload event only.
Syntax
Invisible as Boolean
Sample Code
The following sample code hides the InvoiceNo field 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.VerificationFields.ItemByName("Field_InvoiceNo").Invisible = True
' Update the form
theVerificationForm.RepaintControls