This property returns the caption of the specified button.
object.LinkCode
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISButton interface |
string
Display some information about the specified button, including its caption.
Dim aButton
Dim aControlInfo
Set aButton = Form.Controls_("btnDemo")
aControlInfo =_
"Caption: " & aButton.Caption & vbNewLine &_
"ShortName: " & aButton.ShortName & vbNewLine &_
"TypeName: " & aButton.TypeName & vbNewLine &_
"Link Code: " & aButton.LinkCode
Profile.MsgBox(aControlInfo)
In Profile Client v8 on User Interface Caption can be found in
.