ToString (RecordsetCursor function)

From m204wiki
Revision as of 00:17, 27 April 2011 by JAL2 (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Information about RecordSetCursor (RecordsetCursor class)

ToString returns a longstring that has the RecordSetCursor object's state, file name, record number, and lock strength.

Syntax

%string = recordsetCursor:ToString

Syntax terms

%string A longstring variable to receive the contents of the RecordsetCursor.
recordsetCursor A RecordsetCursor object variable.

Usage notes

  • ToString can be applied implicitly: simply Print (or Audit) an object variable, and the ToString method is automatically applied to the object. That is:

    print %recsetCursor

    is equivalent to:

    print %recsetCursor:ToString

Examples

The following output is produced by a print %recsetCursor statement:

State=HasRecord, Filename=MYPROC, RecordNumber=311, LockStrength=Share

See also