RemoveItem (FloatNamedArraylist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (Undo revision 46505 by Dme (talk))
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Template:FloatNamedArraylist:RemoveItem subtitle}}
{{Template:FloatNamedArraylist:RemoveItem subtitle}}


This callable function removes from the FloatNamedArraylist
<var>RemoveItem</var> removes the item, that has the specified subscript number, from the <var>FloatNamedArraylist</var>.
the item that has the specified subscript number.
 
==Syntax==
==Syntax==
{{Template:FloatNamedArraylist:RemoveItem syntax}}
{{Template:FloatNamedArraylist:RemoveItem syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%num</th>
<tr><th>%count</th>
<td>A numeric variable to contain the number of items in the FloatNamedArraylist after the specified item is removed. </td></tr>
<td>An, optional, numeric variable to contain the number of items remaining in the <var>FloatNamedArraylist</var> after the specified item is removed.</td></tr>
<tr><th>%fnamrayl</th>
<tr><th>fltNal</th>
<td>A FloatNamedArraylist object. </td></tr>
<td>A <var>FloatNamedArraylist</var> object.</td></tr>
<tr><th>subscript</th>
<tr><th>number</th>
<td>A numeric value that serves as a subscript to identify a ''%fnamrayl'' item.
<td>A numeric value that serves as a subscript to identify a <var class="term">fltNal</var> item.
<p class="code">If no item in ''%fnamrayl'' has the specified subscript, the request is cancelled, regardless of the setting of [[UseDefault (FloatNamedArraylist property)|UseDefault]].</td></tr>
</td></tr>
</p>
</table>
</table>
==Usage Notes==
<ul><li>If no item in <var class="term">fltNal</var> has the specified subscript, the request is cancelled, regardless of the setting of <var>[[UseDefault (FloatNamedArraylist property)|UseDefault]]</var>.</ul>
==See also==
==See also==
{{Template:FloatNamedArraylist:RemoveItem footer}}
{{Template:FloatNamedArraylist:RemoveItem footer}}

Latest revision as of 03:08, 8 August 2012

Remove item from FloatNamedArraylist (FloatNamedArraylist class)


RemoveItem removes the item, that has the specified subscript number, from the FloatNamedArraylist.

Syntax

[%count =] fltNal:RemoveItem( number)

Syntax terms

%count An, optional, numeric variable to contain the number of items remaining in the FloatNamedArraylist after the specified item is removed.
fltNal A FloatNamedArraylist object.
number A numeric value that serves as a subscript to identify a fltNal item.

Usage Notes

  • If no item in fltNal has the specified subscript, the request is cancelled, regardless of the setting of UseDefault.

See also