Search
IEnumerable.item Method
See Also
 






Gets the element at the given index.

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

 Syntax

JavaScript  Copy Code

function item (index)

 Parameters

index

Number. The index.

 Return Value

Object. The element at the given index.

 Example

The following code checks if the old items of a ListView instance, which have changed have an item called item1 at the beginning of the collection:

JavaScript  Copy Code

listView.selectionChanged.addEventListener(listSelectionChanged);


function listSelectionChanged(sender, args)
{

     if( args.oldItems[0] == item1)
     {
             //do something
     }
}

 See Also