ReturnCode (FastUnloadTask function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
 
(2 intermediate revisions by one other user not shown)
Line 6: Line 6:
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%number</th>
<tr><th>%number</th>
<td>A numeric variable to contain the <var class="product">[[Fast/Unload]]</var> return code.
<td>A numeric variable to contain the <var class="product">Fast/Unload</var> [[Fast/Unload program return codes|return code]].
</td></tr>
</td></tr>
<tr><th>fastUnloadTask</th>
<tr><th>fastUnloadTask</th>
Line 12: Line 12:


</td></tr></table>
</td></tr></table>
<var>ReturnCode</var> can only be called when <var class="term">fastUnloadTask</var> is in the <var>Done</var> state.
 
If called in any other state, the request is cancelled.
==Usage notes==
<ul>
<li><var>ReturnCode</var> can only be called when <var class="term">fastUnloadTask</var> is in the <var>Done</var> [[FastUnloadTask class#The FastUnloadTaskState enumeration|state]]. If called in any other state, the request is cancelled.
</ul>
 
==See also==
==See also==
{{Template:FastUnloadTask:ReturnCode footer}}
{{Template:FastUnloadTask:ReturnCode footer}}
[[Category:Fast/Unload User Language Interface]]
[[Category:Fast/Unload SOUL Interface]]

Latest revision as of 20:18, 31 July 2015

Return Fast/Unload return code (FastUnloadTask class)


Syntax

%number = fastUnloadTask:ReturnCode

Syntax terms

%number A numeric variable to contain the Fast/Unload return code.
fastUnloadTask An instantiated FastUnloadTask object variable.

Usage notes

  • ReturnCode can only be called when fastUnloadTask is in the Done state. If called in any other state, the request is cancelled.

See also