LastItem (Stringlist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (more consistent layout and better tagging)
 
Line 16: Line 16:
<ul>
<ul>
<li>All errors in <var>LastItem</var> result in request cancellation.
<li>All errors in <var>LastItem</var> result in request cancellation.
<li>Calling <var>LastItem</var> for object <code>%sl</code> is equivalent to specifying <code>%sl:</code><var>[[Item (Stringlist function)|Item]]</var><code>(%sl:count)</code>.
<li>Calling <var>LastItem</var> for object <code>%sl</code> is equivalent to specifying <code>%sl:[[Item (Stringlist function)|Item]](%sl:count)</code>.
<li><var>LastItem</var> is available in <var class="product">Sirius Mods</var> version 7.0 and later.
<li><var>LastItem</var> is available in <var class="product">Sirius Mods</var> version 7.0 and later.
</ul>
</ul>

Latest revision as of 15:44, 31 October 2012

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.