The vertical offset of the specified edit control from the top left corner of the form.
object.Top
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISEdit interface |
int
Display some information about the specified edit control, including its vertical offset from the top left corner of the form.
Dim aEdit
Dim aEditInfo
Set aEdit = Form.Controls_("edtInform")
aEditInfo =_
"Width: " & aEdit.Width & vbNewLine &_
"Height: " & aEdit.Height & vbNewLine &_
"Hint: " & aEdit.Hint & vbNewLine &_
"Left: " & aEdit.Left & vbNewLine &_
"Top: " & aEdit.Top & vbNewLine &_
"Tag: " & aEdit.Tag & vbNewLine &_
"ShortName: " & aEdit.ShortName & vbNewLine &_
"TypeName: " & aEdit.TypeName
Profile.MsgBox(aEditInfo)
In Profile Client v8 on User Interface Top can be found in
.