Item (UnicodeNamedArraylist property): Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{Template:UnicodeNamedArraylist:Item subtitle}} | {{Template:UnicodeNamedArraylist:Item subtitle}} | ||
<!-- This is very close to the same method's page for these classes: | |||
NamedArraylist | |||
FloatNamedArraylist | |||
Many changes should be reflected to all three method's pages --> | |||
<var>Item</var> is a ReadWrite property which returns or sets the value of the item that has the specified subscript name in the <var>UnicodeNamedArraylist</var>. | <var>Item</var> is a ReadWrite property which returns or sets the value of the item that has the specified subscript name in the <var>UnicodeNamedArraylist</var>. | ||
Line 8: | Line 13: | ||
{{Template:UnicodeNamedArraylist:Item syntax}} | {{Template:UnicodeNamedArraylist:Item syntax}} | ||
===Syntax terms=== | ===Syntax terms=== | ||
<!-- This is very close to the same method's page for these classes: | |||
NamedArraylist | |||
FloatNamedArraylist | |||
Many changes should be reflected to all three method's pages --> | |||
<table class="syntaxTable"> | <table class="syntaxTable"> | ||
<tr><th>%currentItem</th> | <tr><th>%currentItem</th> | ||
Line 20: | Line 31: | ||
==Usage notes== | ==Usage notes== | ||
<!-- This is very close to the same method's page for these classes: | |||
NamedArraylist | |||
FloatNamedArraylist | |||
Many changes should be reflected to all three method's pages --> | |||
<ul> | <ul> | ||
<li>The <var>Item</var> keyword is not required. For example, in the first of the [[UnicodeNamedArraylist class#Examples|"Examples"]] on the <var>UnicodeNamedArraylist</var> class page, the following statement: | <li>The <var>Item</var> keyword is not required. For example, in the first of the [[UnicodeNamedArraylist class#Examples|"Examples"]] on the <var>UnicodeNamedArraylist</var> class page, the following statement: | ||
Line 46: | Line 63: | ||
==See also== | ==See also== | ||
<!-- This is very close to the same method's page for these classes: | |||
NamedArraylist | |||
FloatNamedArraylist | |||
Many changes should be reflected to all three method's pages --> | |||
<ul><li>The <var>[[ItemByNumber_(GenericNamedArraylist_property)|ItemByNumber]]</var> property lets you retrieve or set an item using the item's ordinal number. | <ul><li>The <var>[[ItemByNumber_(GenericNamedArraylist_property)|ItemByNumber]]</var> property lets you retrieve or set an item using the item's ordinal number. | ||
<li>The <var>[[NameByNumber (UnicodeNamedArraylist function)|NameByNumber]]</var> function lets you retrieve an item's name using the item's ordinal number. | <li>The <var>[[NameByNumber (UnicodeNamedArraylist function)|NameByNumber]]</var> function lets you retrieve an item's name using the item's ordinal number. | ||
<li>The <var>[[Number (UnicodeNamedArraylist function)|Number]]</var> function lets you retrieve an item's ordinal number using the item's name. | <li>The <var>[[Number (UnicodeNamedArraylist function)|Number]]</var> function lets you retrieve an item's ordinal number using the item's name; it can be useful for determining whether an item exists for a specified name. | ||
</ul> | </ul> | ||
{{Template:UnicodeNamedArraylist:Item footer}} | {{Template:UnicodeNamedArraylist:Item footer}} |
Revision as of 19:37, 4 August 2012
Value of named item (UnicodeNamedArraylist class)
Item is a ReadWrite property which returns or sets the value of the item that has the specified subscript name in the UnicodeNamedArraylist.
For additional comments about the Item method in collections, see "Coding considerations for collections".
Syntax
%currentItem = uniNal:Item( unicode) uniNal:Item( unicode) = newItem Throws ItemNotPresent
Syntax terms
%currentItem | A variable of the same type as specified on the uniNal declaration to contain the value of the specified uniNal item. |
---|---|
uniNal | A UnicodeNamedArraylist object. |
unicode | A Unicode string that serves as a subscript to identify a uniNal item. |
newItem | A value of the same type as specified on the uniNal declaration to be assigned to the specified uniNal item. |
Usage notes
- The Item keyword is not required. For example, in the first of the "Examples" on the UnicodeNamedArraylist class page, the following statement:
%k('§Apr':u) = 'Leo'
is equivalent to:
%k:Item('§Apr':u) = 'Leo'
- If the Item property is being set and there is already an item on the UnicodeNamedArraylist that has the specified name, that item is replaced. If the Item property is being set and there is no item on the UnicodeNamedArraylist that has the indicated name, the item is added.
- If the Item property is being retrieved and there is no item on the UnicodeNamedArraylist that has the indicated name, the result is one of the following actions:
- If the UseDefault property value is
False
:- Under Sirius Mods version 8.0 and later an ItemNotPresent exception is thrown.
- Under Sirius Mods version 7.9 and earlier the request is cancelled.
- The Default value is returned if the UseDefault property is
True
.
Regardless of the value of UseDefault, the presence of the item with the indicated name can be checked using the Number function, for example:
%num = %myLis:number(%key) if %num then %name = %myLis:itemByNumber(%num) ...
- If the UseDefault property value is
- As shown in the first of the "Examples" on the UnicodeNamedArraylist class page, UnicodeNamedArraylist items are ordered alphabetically by their subscript names. Accordingly, the Item method takes a Unicode string as its argument.
See also
- The ItemByNumber property lets you retrieve or set an item using the item's ordinal number.
- The NameByNumber function lets you retrieve an item's name using the item's ordinal number.
- The Number function lets you retrieve an item's ordinal number using the item's name; it can be useful for determining whether an item exists for a specified name.