NotifyCollectionChangedEventArgs Constructor(NotifyCollectionChangedAction,IList,Int32,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.Integer, _
   ByVal  As System.Integer _
)
             
        
            
            public NotifyCollectionChangedEventArgs( 
   NotifyCollectionChangedAction ,
   System.Collections.IList ,
   System.int ,
   System.int 
)
             
        
             
        
            Parameters
- action
 
- The NotifyCollectionChangedAction action that caused a INotifyCollectionChanged.CollectionChanged event.
 - changedItems
 
- The System.Collections.IList list containing changed items.
 - index
 
- The new index.
 - oldIndex
 
- The old index.
 
             
            
            
            
            
            
            
            
            
            
            
            
            See Also