State (FastUnloadTask function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 2: Line 2:


This method returns the current state of the <var>FastUnloadTask</var> method object as a
This method returns the current state of the <var>FastUnloadTask</var> method object as a
<var>FastUnloadTaskState</var> [[Enumerations|enumeration]] value.
<var>[[FastUnloadTask class#The FastUnloadTaskState enumeration|FastUnloadTaskState]]</var> [[Enumerations|enumeration]] value.
 
==Syntax==
==Syntax==
{{Template:FastUnloadTask:State syntax}}
{{Template:FastUnloadTask:State syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%fastUnloadTaskState</th>
<tr><th>%fastUnloadTaskState</th>
<td>An enumeration object of type <var>FastUnloadTaskState</var> which is set to the current state of <var class="term">fastUnloadTask</var>.
<td>An enumeration object of type <var>FastUnloadTaskState</var> which is set to the current state of <var class="term">fastUnloadTask</var>.</td></tr>
</td></tr>
 
<tr><th>fastUnloadTask</th>
<tr><th>fastUnloadTask</th>
<td>A <var>FastUnloadTask</var> object.
<td>A <var>FastUnloadTask</var> object.</td></tr>
 
</table>
</td></tr></table>


==Usage notes==
==Usage notes==
<ul>
<li>The <var>State</var> method can be called when <var class="term">fastUnloadTask</var> is in any state.
</ul>


The <var>State</var> method can be called when <var class="term">fastUnloadTask</var> is in any state.
==See also==
==See also==
{{Template:FastUnloadTask:State footer}}
{{Template:FastUnloadTask:State footer}}
[[Category:Fast/Unload User Language Interface]]
[[Category:Fast/Unload User Language Interface]]

Revision as of 21:27, 15 November 2012

Return state of this FastUnloadTask object (FastUnloadTask class)


This method returns the current state of the FastUnloadTask method object as a FastUnloadTaskState enumeration value.

Syntax

%fastUnloadTaskState = fastUnloadTask:State

Syntax terms

%fastUnloadTaskState An enumeration object of type FastUnloadTaskState which is set to the current state of fastUnloadTask.
fastUnloadTask A FastUnloadTask object.

Usage notes

  • The State method can be called when fastUnloadTask is in any state.

See also