NotifyCollectionChangedEventArgs Constructor(NotifyCollectionChangedAction,IList,IList,Int32)
In This Topic
Initializes a new instance of the
NotifyCollectionChangedEventArgs class.
Syntax
'Declaration
Public Function New( _
ByVal As NotifyCollectionChangedAction, _
ByVal As System.Collections.IList, _
ByVal As System.Collections.IList, _
ByVal As System.Integer _
)
public NotifyCollectionChangedEventArgs(
NotifyCollectionChangedAction ,
System.Collections.IList ,
System.Collections.IList ,
System.int
)
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.
- startingIndex
- The zero-based starting index.
See Also