method Add(Text: String): Number
Available for StringList Objects. Adds the Text to the list, and returns the index number of the added item.
Add method syntax has these named arguments:
Parameter |
Description |
|---|---|
Text |
Required. The text to be added to the list. |
For example:
strList.Add("Another Item")
will add Another Item to StringList strList and will return the Index Number of the new item in the String List.