State (FastUnloadTask function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 7: Line 7:
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%funtstate</th>
<tr><th>%fastUnloadTaskState</th>
<td>A declared enumeration object of type <var>FastUnloadTaskState</var> to contain the current state of ''%funtask''.
<td>A declared enumeration object of type <var>FastUnloadTaskState</var> to contain the current state of ''%funtask''.
</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 16: Line 16:
==Usage notes==
==Usage notes==


The <var>State</var> method can be called when ''%funtask'' is in any state.
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}}

Revision as of 20:47, 29 April 2011

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 A declared enumeration object of type FastUnloadTaskState to contain the current state of %funtask.
fastUnloadTask An instantiated FastUnloadTask object variable.

Usage notes

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

See also