First (RecordsetCursor function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
{{Template:RecordsetCursor:First subtitle}}
{{Template:RecordsetCursor:First subtitle}}
Valid in any state,
Valid in any state,
this [[Notation conventions for methods#Callable methods|callable]]
this [[Notation conventions for methods#Callable functions|callable]]
method positions the cursor on the first record in
method positions the cursor on the first 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> state.

Revision as of 19:40, 14 July 2011

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

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

Syntax

[%cursorState =] recordsetCursor:First

Syntax terms

%cstate If specified, a declared enumeration object of type CursorState to contain the state of the cursor after the completion of First. Valid values are described in "Cursor state".
%rscursor An instantiated RecordsetCursor object.

See also