ISProfile.CreateStrings

Description

This function creates string list.

Syntax

object.CreateStrings()

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

Return Value

ISStrings

Returns the string list.

Example

Display the added strings and the text.

Dim aStrings
Dim aMessage 

Set aStrings = Profile.CreateStrings
aStrings.Add("FirstLine")
aStrings.Add("SecondLine")
aStrings.Add("ThirdLine")

Profile.MsgBox("TEXT:" & vbNewLine & aStrings.Text & vbNewLine &_
  "LINES COUNT: " & aStrings.Count)  
Note:

Version information

Added in v7.8.0