method Append(Text: String)
Available for StringList Objects. Adds the Text to the list end of the list.
Append method syntax has these named arguments:
Parameter |
Description |
|---|---|
Text |
Required. The text to be added to the list. |
For example:
strList.Append("Another Item")
will add Another Item to StringList strList.
See also Memory Table and Table Append method.