C1.Web.Wijmo.Controls.45 Assembly / C1.C1Schedule Namespace / NotifyCollectionChangedEventArgs Class / NotifyCollectionChangedEventArgs Constructor / NotifyCollectionChangedEventArgs Constructor(NotifyCollectionChangedAction,IList,IList)
The NotifyCollectionChangedAction action that caused a INotifyCollectionChanged.CollectionChanged event.
The System.Collections.IList list containing added items.
The System.Collections.IList list containing removed items.

In This Topic
NotifyCollectionChangedEventArgs Constructor(NotifyCollectionChangedAction,IList,IList)
In This Topic
Initializes a new instance of the NotifyCollectionChangedEventArgs class.
Syntax
'Declaration
 
Public Function New( _
   ByVal action As NotifyCollectionChangedAction, _
   ByVal newItems As System.Collections.IList, _
   ByVal oldItems As System.Collections.IList _
)
 

Parameters

action
The NotifyCollectionChangedAction action that caused a INotifyCollectionChanged.CollectionChanged event.
newItems
The System.Collections.IList list containing added items.
oldItems
The System.Collections.IList list containing removed items.
See Also