Top

This property sets or returns the top position coordinates of the field label on the Verifier form.

The scripter can choose to reorder positional information of the field label 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 top position of the Invoice Number field label from the Verifier Form.

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

See also