ISStrings.Text

Description

The text presentation of the string list (as the lines separated by vbNewLine).

Syntax

object.Text

Part Attribute Type Description
object Required
The object always implements the ISStrings interface

Return Value

string

Example

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)  
Note:

Version information

Added in v7.8.0
Access changed to read/write in v7.9.1