The text presentation of the string list (as the lines separated by vbNewLine).
object.Text
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISStrings interface |
string
Display the text presentation of the string list.
Dim aStrings
Dim aMessage
Set aStrings = Profile.CreateStrings
aStrings.Text = "FirstLine" & vbNewLine & "SecondLine" & vbNewLine & "ThirdLine"
Profile.MsgBox("TEXT:" & vbNewLine & aStrings.Text & vbNewLine &_
"LINES COUNT: " & aStrings.Count)
Access changed to
read/write in
v7.9.1