Width

This property sets or returns the Width size information of the field on the Verifier form.

The scripter can choose to reorder or resize positional information of the field if another element is being hidden. Using the RepaintControls method, the form UI is updated with the changes made.

Sample Code

The following sample code returns the width information of the Invoice Number field from the Verifier form.

Dim theVerificationProject as DISTILLERVERIFIERCOMPLib.SCBCdrVerificationProject
Dim theVerificationForm as DISTILLERVERIFIERCOMPLib.SCBCdrVerificationForm
Dim WidthInfo as Integer
' Request the main form
Project.GetVerifierProject theVerificationProject
Set theVerificationForm = theVerificationProject.AllVerificationForms.ItemByName("Invoices")
WidthInfo = theVerificationForm.VerificationFields.ItemByName("Field_InvoiceNo").Width

See also