Returns the number of items in the list.
Syntax
int list.Count()
Returns
An int that corresponds to the number of items in the list.
int
Sample
listSample.rfsvar h = ["buttered", "scones"]; trace "How many items so far?", h.Count();
listSample.rfs
var h = ["buttered", "scones"]; trace "How many items so far?", h.Count();
h.Count()
"How many items so far?", 2
Figure 398. The trace message output of the script above
Related links
Search Highlighter (On/Off)