Search
NotifyCollectionChangingEventArgs.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 collectionChanging event of the decorations property of a DecorationLayer object in a map.

JavaScript  Copy Code

var m = MindFusion.Mapping;

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

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

markers.decorations.collectionChanging.addEventListener(handleCollectionChanging);


function (handleCollectionChanging) (sender, args )
{
      if(args.newItems.contains(marker1))
      {
          //do something
      }
}

 See Also