Search
IEnumerable.last Method
See Also
 






Returns the last element in the collection.

Namespace: MindFusion.Common.Collections
File: IEnumerable.js

 Syntax

JavaScript  Copy Code

function last ()

 Return Value

Object. The last element in the collection.

 Example

The following code checks if the last item in the collection of items of a ListView before the collection was changed is an object called _item:

JavaScript  Copy Code

listView.selectionChanged.addEventListener(listSelectionChanged);


function listSelectionChanged(sender, args)
{

     if( args.oldItems.items().last() == _item)
     {
             //do something
     }
}

 See Also