ReadOnly

This property sets or returns if the verification field on the Verifier or Web Verifier form is editable or read-only. For the Web Verifier, use this method in the VerifiedFormatLoad event.

Set the property to TRUE to make the field non-editable.

Syntax

ReadOnly as Boolean

Sample Code

The following sample code sets the Invoice Number field as read-only on the Verifier form.

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