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