FileName (Record function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 1: Line 1:
{{Template:Record:FileName subtitle}}
{{Template:Record:FileName subtitle}}
This <var>ReadOnly</var>, non-shared property returns
the name of the file in which the record resides.
For file context <var>Record</var> objects, <var>FileName</var> returns
For file context <var>Record</var> objects, <var>FileName</var> returns
the compile-time file context.
the compile-time file context.

Revision as of 00:33, 27 April 2011

Return the name of the file that contains the Record object's record (Record class)

For file context Record objects, FileName returns the compile-time file context. For group context record objects, it returns one of the files in the group context.

Syntax

%string = record:FileName

Syntax terms

%fname A string to contain the name of the file of the %rec record.
%rec An instantiated Record object variable.

See also