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