Search
NotifyCollectionChangedEventArgs.newItems Property
See Also
 






Gets the list of new items involved in the change.

Namespace: MindFusion.Common
File: Events.js

 Syntax

JavaScript  Copy Code

get newItems() {}

 Property Value

Array. The list of involved items.

 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.newItems.contains(mark))
     {
          //do something
     }
}

 See Also