RemoveItem (UnicodeNamedArraylist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 1: Line 1:
<span style="font-size:120%; color:black"><b><section begin=dpl_desc/>Remove item from UnicodeNamedArr<section end=dpl_desc/></b></span>
{{Template:UnicodeNamedArraylist:RemoveItem subtitle}}
[[Category:UnicodeNamedArraylist methods|RemoveItem function]]
<!--DPL?? Category:UnicodeNamedArraylist methods|RemoveItem function: Remove item from UnicodeNamedArr-->
<p>
RemoveItem is a member of the [[UnicodeNamedArraylist class]].
</p>


This callable function removes from the UnicodeNamedArraylist
This callable function removes from the UnicodeNamedArraylist
the item that has the specified subscript name.
the item that has the specified subscript name.
==Syntax==
==Syntax==
  [%num =] %unamrayl:RemoveItem(name)
{{Template:UnicodeNamedArraylist:RemoveItem syntax}}
===Syntax Terms===
===Syntax terms===
<dl>
<dl>
<dt><i>%num</i>
<dt><i>%num</i>
Line 26: Line 21:


</dl>
</dl>
==Usage Notes==
==Usage notes==
<ul>
<ul>
<li>For an example using the RemoveItem method, see [[UnicodeNamedArraylist class]].
<li>For an example using the RemoveItem method, see [[UnicodeNamedArraylist class]].
</ul>
</ul>
==See also==
{{Template:UnicodeNamedArraylist:RemoveItem footer}}

Revision as of 19:43, 28 January 2011

Remove item from UnicodeNamedArraylist (UnicodeNamedArraylist class)


This callable function removes from the UnicodeNamedArraylist the item that has the specified subscript name.

Syntax

[%count =] uniNal:RemoveItem( unicode)

Syntax terms

%num
A numeric variable to contain the number of items in the UnicodeNamedArraylist after the specified item is removed.
%unamrayl
A UnicodeNamedArraylist object.
name
A Unicode string that serves as a subscript name to identify a %unamrayl item. If no item in %unamrayl has the specified subscript, the request is cancelled, regardless of the setting of UseDefault.

Usage notes

See also