Search
IEnumerable.indexOfItem Method
See Also
 






Gets the index of a given object in a collection.

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

 Syntax

JavaScript  Copy Code

function indexOfItem (obj, [fromIndex])

 Parameters

obj

Object. The object to look for.

fromIndex
Optional.

Number. The starting index to search from.

 Return Value

Number. The index of the object, or -1 if the object is not present in the collection.

 Example

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

JavaScript  Copy Code

listView.selectionChanged.addEventListener(listSelectionChanged);


function listSelectionChanged(sender, args)
{

     if( args.oldItems.contains(item1))
     {
     }
}

 See Also