CurrentRecord (FastUnloadTask function): Difference between revisions

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


This method returns the contents of the current record from the <var class="product">[[Fast/Unload]]</var> task
as a longstring.
==Syntax==
==Syntax==
{{Template:FastUnloadTask:CurrentRecord syntax}}
{{Template:FastUnloadTask:CurrentRecord syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%ls</th>
<tr><th>%string</th>
<td>A longstring variable to contain the current record contents.
<td>A Longstring variable to contain the current record contents.
</td></tr>
</td></tr>
<tr><th>%funtask</th>
<tr><th>fastUnloadTask</th>
<td>An instantiated <var>FastUnloadTask</var> object variable.
<td>An instantiated <var>FastUnloadTask</var> object variable.


Line 18: Line 15:


<var>CurrentRecord</var> can only be called when
<var>CurrentRecord</var> can only be called when
''%funtask'' is in the <var>HaveRecord</var> state.
<var class="term">fastUnloadTask</var> is in the <var>HaveRecord</var> state.
If called in any other state, the request is cancelled.
If called in any other state, the request is cancelled.
==See also==
==See also==
{{Template:FastUnloadTask:CurrentRecord footer}}
{{Template:FastUnloadTask:CurrentRecord footer}}

Revision as of 20:59, 29 April 2011

Return current record from Fast/Unload as Longstring (FastUnloadTask class)


Syntax

%string = fastUnloadTask:CurrentRecord

Syntax terms

%string A Longstring variable to contain the current record contents.
fastUnloadTask An instantiated FastUnloadTask object variable.

Usage notes

CurrentRecord can only be called when fastUnloadTask is in the HaveRecord state. If called in any other state, the request is cancelled.

See also