LastItem (Stringlist function)

From m204wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Retrieve value of last Stringlist item (Stringlist class)


This method returns the current contents of the last item in the method object Stringlist.

Syntax

%string = sl:LastItem

Syntax terms

%string This string receives the contents of the last sl item.
sl A Stringlist object.

Usage notes

  • All errors in LastItem result in request cancellation.
  • Calling LastItem for object %sl is equivalent to specifying %sl:Item(%sl:count).
  • LastItem is available in Sirius Mods version 7.0 and later.

See also

  • Item which retrieves the n'th item in a Stringlist
  • FirstItem which retrieves just the first item in a Stringlist.