LastItem (Stringlist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (syntax digram, tags and links)
m (syntax digram, tags and links)
Line 22: Line 22:
<li><var>[[FirstItem (Stringlist function)|FirstItem]]</var> which retrieves just the first item in a <var>Stringlist</var>.</ul></ul>
<li><var>[[FirstItem (Stringlist function)|FirstItem]]</var> which retrieves just the first item in a <var>Stringlist</var>.</ul></ul>


[[Category:Stringlist methods|LastItem function]]
==See also==
{{Template:Stringlist:LastItem footer}}

Revision as of 18:56, 26 January 2011

Retrieve value of last Stringlist item (Stringlist class)


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

LastItem is available in Sirius Mods version 7.0 and later.

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.
  • The LastItem method for object sl is equivalent to specifying %sl:Item(%sl:count).
  • See also:
    • Item which retrieves the n'th item in a Stringlist
    • FirstItem which retrieves just the first item in a Stringlist.

See also