Count (Stringlist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
 
m (see also)
 
(12 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<span style="font-size:120%"><b>Number of items in Stringlist</b></span>
{{Template:Stringlist:Count subtitle}}


This method accepts no arguments and returns an integer that contains the number of items in the specified Stringlist.
This method accepts no arguments and returns an integer that contains the number of items in the specified <var>Stringlist</var>.


Count is a member of the [[Stringlist class]].
==Syntax==
{{Template:Stringlist:Count syntax}}
===Syntax terms===
<table class="syntaxTable">
<tr><th>%count</th>
<td>A numeric variable to contain the number of items in the method <var>Stringlist</var> <var class="term">sl</var>.</td></tr>
<tr><th>sl</th>
<td>A <var>Stringlist</var> object.</td></tr>
</table>


==Count Syntax==
==See also==
<pre>
{{Template:Stringlist:Count footer}}
%rc = %sl:Count
</pre>
 
===Syntax Terms===
<dl>
<dt>%rc<dd>A numeric variable to contain the number of items in the method Stringlist '''%sl'''.<dt>%sl<dd>A Stringlist object.
</dl>
 
 
[[Category:Stringlist methods|Count function]]

Latest revision as of 01:25, 27 January 2011

Number of items in Stringlist (Stringlist class)


This method accepts no arguments and returns an integer that contains the number of items in the specified Stringlist.

Syntax

%count = sl:Count

Syntax terms

%count A numeric variable to contain the number of items in the method Stringlist sl.
sl A Stringlist object.

See also