CurrentImagineFile (Record function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
Wiccan (talk | contribs)
Automatically generated page update
 
No edit summary
 
Line 1: Line 1:
{{Template:Record:CurrentImagineFile subtitle}}
{{Template:Record:CurrentImagineFile subtitle}}


This page is [[under construction]].
Get the name of the containing <var class="product">Imagine</var> file for current (innermost) record <var>For</var> loop.
==Syntax==
==Syntax==
{{Template:Record:CurrentImagineFile syntax}}
{{Template:Record:CurrentImagineFile syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%string</th><td>string</td></tr>
<tr><th>%string</th><td>The name of the containing <var class="product">Imagine</var> file for the current <var>For</var> loop record, if the record is in an <var class="product">Imagine Transparency</var> file, or an empty string, otherwise.</td></tr>
<tr><th nowrap="true"><var>%(Record In </var>filOrGrp name<var>)</var></th>
<tr><th nowrap="true"><var>%(Record In </var>filOrGrp name<var>)</var></th>
<td>The class name in parentheses denotes a shared method. <var>CurrentImagineFile</var> can also be invoked via a <var>Record</var> object variable, which may be <var>Null</var>.</td></tr>
<td>The class name in parentheses denotes a shared method. <var>CurrentImagineFile</var> can also be invoked via a <var>Record</var> object variable, which may be <var>Null</var>.</td></tr>
</table>
</table>
==Usage notes==
==Usage notes==
==Examples==
The <var class="product">Imagine</var> filename can be used with a recordId obtained via the [[CurrentRecordId (Record function)|CurrentRecordId method]] to allow an <var class="product">Imagine</var> application to easily locate a record.
==See also==
==See also==
{{Template:Record:CurrentImagineFile footer}}
{{Template:Record:CurrentImagineFile footer}}

Latest revision as of 21:34, 28 March 2025

Get Imagine filename from current record in For looop (Record class)


Get the name of the containing Imagine file for current (innermost) record For loop.

Syntax

%string = %(Record In filOrGrp name):CurrentImagineFile

Syntax terms

%stringThe name of the containing Imagine file for the current For loop record, if the record is in an Imagine Transparency file, or an empty string, otherwise.
%(Record In filOrGrp name) The class name in parentheses denotes a shared method. CurrentImagineFile can also be invoked via a Record object variable, which may be Null.

Usage notes

The Imagine filename can be used with a recordId obtained via the CurrentRecordId method to allow an Imagine application to easily locate a record.

See also