The text of the specified control.
object.Text
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISControl interface |
string
Display some information about the specified control, including its text.
Dim aControl
Dim aControlInfo
Set aControl = Form.Controls_("edtName")
aControlInfo =_
"Caption: " & aControl.Caption & vbNewLine &_
"ShortName: " & aControl.ShortName & vbNewLine &_
"Text: " & aControl.Text
Profile.MsgBox(aControlInfo)
In Profile Client v8 on User Interface Text can be found in
.