RemoveItem (FloatNamedArraylist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (match syntax table to syntax template (will need to be redone when syntax template is fixed) tags and edits)
m (update syntax terms to match corrected template)
Line 7: Line 7:
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%number</th>
<tr><th>%count</th>
<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>
<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>fltNal</th>
<tr><th>fltNal</th>

Revision as of 22:38, 18 March 2011

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