FileName (RecordsetCursor function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 1: Line 1:
{{Template:RecordsetCursor:FileName subtitle}}
{{Template:RecordsetCursor:FileName subtitle}}


Returns the name of the file that contains the record at
the current cursor position.
==Syntax==
==Syntax==
{{Template:RecordsetCursor:FileName syntax}}
{{Template:RecordsetCursor:FileName syntax}}

Revision as of 23:12, 26 April 2011

Return name of file containing the record at the current cursor position (RecordsetCursor class)


Syntax

%string = recordsetCursor:FileName

Syntax terms

%fname A string to contain the name of the file of the current record.
%rscursor An instantiated RecordsetCursor object.

Usage Note

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

See also