method AddStrings(StringList: Object)
Available for StringList Objects. Adds strings from another StringList object to the end of the list.
AddStrings method syntax has these named arguments:
Parameter |
Description |
|---|---|
StringList |
Required. The StringList Object to be be added to the list. |
For example:
strList1.AddStrings(strList2)
will add all items from strList2 to the end of strList1.