The text displayed in the specified edit control.
object.Text
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISEdit interface |
string
Display some information about the specified edit control, including its text.
Dim aEdit
Dim aEditInfo
Set aEdit = Form.Controls_("edtInform")
aEditInfo =_
"Short Name: " & aEdit.ShortName & vbNewLine &_
"TypeName: " & aEdit.TypeName & vbNewLine &_
"Text: " & aEdit.Text
Profile.MsgBox(aEditInfo)
In Profile Client v8 on User Interface Text can be found in
.