Add (Stringlist function)

From m204wiki
Revision as of 17:18, 31 December 2010 by Dme (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Add string as new Stringlist item

This callable method adds arbitrary string data to a Stringlist. The Add method accepts one argument and returns a numeric result.

Add is a member of the Stringlist class.

Add syntax

[%rc =] %sl:Add(string)

Syntax Terms

%rc
A numeric variable to contain the number of items in the indicated Stringlist after the string has been added. %rc is also the item number associated with the added string in the Stringlist.
%sl
A Stringlist object.
string
A string that is to be added to the Stringlist.

Usage Notes

Examples

In the following example, four comma-delimited field values are added to a Stringlist for each record in a Recordset:

%list is object stringList
...
%list = new
for each record in %recset
%data = ssn with ',' with lname with ',' -
fname with ',' with mi
%list:add(%data)
end for