Count (SortedRecordset function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Template:SortedRecordset:Count subtitle}}


<span class="pageSubtitle"><section begin=dpl_desc/><section end=dpl_desc/></span>
==Syntax==
[[Category:SortedRecordset methods|Count property]]
{{Template:SortedRecordset:Count syntax}}
<p>
<var>Count</var> is a member of the <var>[[SortedRecordset class|SortedRecordset]]</var> class.
</p>


This property returns the
number of records in the <var>SortedRecordset</var> object.
==Syntax==
<p class="syntax">%cnt = %srecs:Count
</p>
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%cnt</th>
<tr><th>%number</th>
<td>A numeric variable to contain the returned value of <var>Count</var>.
<td>A numeric variable to contain the returned value of <var>Count</var>.
</td></tr>
</td></tr>
<tr><th>%srecs</th>
 
<tr><th>sortedRecordset</th>
<td>A reference to an instance of a <var>SortedRecordset</var> object.
<td>A reference to an instance of a <var>SortedRecordset</var> object.
</td></tr></table>
</td></tr></table>
==See also==
{{Template:SortedRecordset:Count footer}}

Latest revision as of 16:27, 8 November 2012

Calculate number of records in SortedRecordset (SortedRecordset class)


Syntax

%number = sortedRecordset:Count

Syntax terms

%number A numeric variable to contain the returned value of Count.
sortedRecordset A reference to an instance of a SortedRecordset object.

See also