The number of the strings.
object.Count
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISStrings interface |
int
Display the text content and the number of the lines.
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)