ISStrings.Count

Description

The number of the strings.

Syntax

object.Count

Part Attribute Type Description
object Required
The object always implements the ISStrings interface
Restriction: This property is readonly.

Return Value

int

Example

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

Version information

Added in v7.8.0