ASP.NET Pack Programmer's Guide
NotifyCollectionChangedEventArgs.index Property
See Also
 





Gets the index where the change occurred.

Namespace: MindFusion.Mapping
Package: Events.js

 Syntax

JavaScript  Copy Code

Object.defineProperty(NotifyCollectionChangedEventArgs.prototype, "index", { value: Number });

 Property Value

Number. The index.

 Example

The following code handles the collectionChanged event of the decorations property of a DecorationLayer object.

JavaScript  Copy Code

var m = MindFusion.Mapping;

var markers = new m.DecorationLayer("Images");

...................
//add some Marker-s to the decorations property
......................

markers.decorations.collectionChanged.addEventListener(handleCollectionChanged);


function (handleCollectionChanged) (sender, args )
{
      if(args.index == 0)
      {
          //do something
      }
}

 See Also

NotifyCollectionChangedEventArgs Members
NotifyCollectionChangedEventArgs Class
MindFusion.Mapping Namespace