Left

This property sets or returns the left position of the field on the Verifier form.

Sample Code

The following sample code returns the left position of the Invoice Number field label from Verifier Form.

Dim theVerificationProject as DISTILLERVERIFIERCOMPLib.SCBCdrVerificationProject
Dim theVerificationForm as DISTILLERVERIFIERCOMPLib.SCBCdrVerificationForm
Dim LeftPos as Integer
' Request the main form
Project.GetVerifierProject theVerificationProject
Set theVerificationForm = theVerificationProject.AllVerificationForms.ItemByName("Invoices")
LeftPos = theVerificationForm.VerificationLabels.ItemByName("Label_InvoiceNo").Left

See also