RecordNumber (RecordsetCursor function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
<span class="pageSubtitle"><section begin=dpl_desc/><section end=dpl_desc/></span>
{{Template:RecordsetCursor:RecordNumber subtitle}}
[[Category:RecordsetCursor methods|RecordNumber property]]
<p>
<var>RecordNumber</var> is a member of the <var>[[RecordsetCursor class|RecordsetCursor]]</var> class.
</p>


Returns the record number of the record at the
Returns the record number of the record at the
current cursor position.
current cursor position.
==Syntax==
==Syntax==
<p class="syntax">%recnum = %rscursor:RecordNumber
{{Template:RecordsetCursor:RecordNumber syntax}}
</p>
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
Line 24: Line 19:
For more information, see [[RecordsetCursor class#Cursor state|"Cursor state"]].
For more information, see [[RecordsetCursor class#Cursor state|"Cursor state"]].
</ul>
</ul>
==See also==
{{Template:RecordsetCursor:RecordNumber footer}}

Revision as of 22:48, 26 April 2011

Return record number of record at current cursor position (RecordsetCursor class)


Returns the record number of the record at the current cursor position.

Syntax

%number = recordsetCursor:RecordNumber

Syntax terms

%recnum A numeric variable to contain the returned value of RecordNumber.
%rscursor An instantiated RecordsetCursor object.

Usage Note

  • RecordNumber is only valid if the cursor state is HasRecord. For more information, see "Cursor state".

See also