NameByNumber (UnicodeNamedArraylist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (match syntax table to diagram, 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>%unicode</th>
<tr><th>%name</th>
<td>A Unicode string to contain the subscript name of the specified <var class="term">uniNal</var> item. </td></tr>
<td>A Unicode string to contain the subscript name of the specified <var class="term">uniNal</var> item. </td></tr>
<tr><th>uniNal</th>
<tr><th>uniNal</th>

Revision as of 04:05, 11 March 2011

Name of specified item (UnicodeNamedArraylist class)


The NameByNumber ReadOnly property returns the subscript name of the item that has the specified item number (position) in the UnicodeNamedArraylist.

Syntax

%name = uniNal:NameByNumber( number)

Syntax terms

%name A Unicode string to contain the subscript name of the specified uniNal item.
uniNal A UnicodeNamedArraylist object.
number A whole number greater than 0 to identify a uniNal item by its position (item number) in the UnicodeNamedArraylist. If number is greater than the number of items in uniNal, or if it is less than or equal to zero, the request is cancelled.

Usage notes

  • If the NameByNumber property is being retrieved and there is no item on the UnicodeNamedArraylist that has the indicated item number, the result is one of the following actions:
    • The request is cancelled if the UseDefault property value is False.
    • The Default value is returned if the UseDefault property is True.

Examples

  1. For an example using NameByNumber, see "UnicodeNamedArraylist class".

See also

  • Number lets you retrieve an item's content using its item number.