FileName (RecordsetCursor function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
Line 3: Line 3:
==Syntax==
==Syntax==
{{Template:RecordsetCursor:FileName syntax}}
{{Template:RecordsetCursor:FileName syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%fname</th>
<tr><th>%string</th>
<td>A string to contain the name of the file of the current record.
<td>A string to contain the name of the file of the current record.
</td></tr>
</td></tr>
<tr><th>%rscursor</th>
<td>An instantiated <var>RecordsetCursor</var> object.


</td></tr></table>
<tr><th>recordsetCursor</th>
<td>A <var>RecordsetCursor</var> object.</td></tr>
</table>
 
==Usage Note==
==Usage Note==
<ul>
<ul>
Line 19: Line 21:
see [[RecordsetCursor class#Cursor state|"Cursor state"]].
see [[RecordsetCursor class#Cursor state|"Cursor state"]].
</ul>
</ul>
==See also==
==See also==
{{Template:RecordsetCursor:FileName footer}}
{{Template:RecordsetCursor:FileName footer}}

Latest revision as of 20:33, 12 November 2012

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


Syntax

%string = recordsetCursor:FileName

Syntax terms

%string A string to contain the name of the file of the current record.
recordsetCursor A 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