Last (RecordsetCursor function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
 
Line 3: Line 3:
this [[Notation conventions for methods#Callable functions|callable]]
this [[Notation conventions for methods#Callable functions|callable]]
method positions the cursor on the last record in
method positions the cursor on the last record in
the set, and it leaves the cursor in the <var>HasRecord</var> state.
the set, and it leaves the cursor in the <var>HasRecord</var> [[RecordsetCursor class#Cursor state|state]].
 
==Syntax==
==Syntax==
{{Template:RecordsetCursor:Last syntax}}
{{Template:RecordsetCursor:Last syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%cstate</th>
<tr><th>%cursorState</th>
<td>If specified, a declared enumeration object of type <var>CursorState</var> to contain the state of the cursor after the completion of <var>Last</var>. Valid values are described in [[RecordsetCursor class#Cursor state|"Cursor state"]].
<td>If specified, a declared enumeration object of type <var>CursorState</var> to contain the state of the cursor after the completion of <var>Last</var>. Valid values are described in [[RecordsetCursor class#Cursor state|"Cursor state"]].</td></tr>
</td></tr>
 
<tr><th>%rscursor</th>
<tr><th>recordsetCursor</th>
<td>An instantiated <var>RecordsetCursor</var> object.
<td>A <var>RecordsetCursor</var> object.</td></tr>
</td></tr></table>
</table>
 
==See also==
==See also==
{{Template:RecordsetCursor:Last footer}}
{{Template:RecordsetCursor:Last footer}}

Latest revision as of 20:38, 12 November 2012

Move cursor to the last record in the set (RecordsetCursor class)

Valid in any state, this callable method positions the cursor on the last record in the set, and it leaves the cursor in the HasRecord state.

Syntax

[%cursorState =] recordsetCursor:Last

Syntax terms

%cursorState If specified, a declared enumeration object of type CursorState to contain the state of the cursor after the completion of Last. Valid values are described in "Cursor state".
recordsetCursor A RecordsetCursor object.

See also