Item (Arraylist property)

From m204wiki
Revision as of 12:12, 27 January 2011 by Wiccan (talk | contribs) (1 revision)
Jump to navigation Jump to search

Return or set Arraylist item value (Arraylist class)


This ReadWrite property returns or sets the indicated item in the Arraylist.

For additional description of this method, see Coding considerations for collections.

Syntax

%currentItem = al:Item( number) al:Item( number) = newItem

Syntax terms

%item A variable of the same type as specified on the al declaration to contain the value of the specified al item. Or a variable or value of the same type as specified on the al declaration to be assigned to the specified al item.
al An Arraylist object.
number A whole number greater than 0 to identify an al item by its position in the arraylist. If number is greater than the number of items in the al, or if it is less than or equal to zero, the request is cancelled.

Usage notes

  • The Item keyword is not required. For instance, in the For loop in the Arraylist class example, print %alist(%i) is equivalent to:
        print %alist:<var>Item</var>(%i)
    
  • Methods are available to retrieve or seet the first or just the last item in an Arraylist. See FirstItem and LastItem.

See also