ComponentOne Dialog for ASP.NET Web Forms
C1.Web.Wijmo.Controls.45 Assembly / C1.C1Schedule Namespace / NotifyCollectionChangedEventArgs Class / NotifyCollectionChangedEventArgs Constructor / NotifyCollectionChangedEventArgs Constructor(NotifyCollectionChangedAction,Object,Object,Int32)
The NotifyCollectionChangedAction action that caused a INotifyCollectionChanged.CollectionChanged event.
The new item.
The old item.
The zero-based index of the item.

In This Topic
    NotifyCollectionChangedEventArgs Constructor(NotifyCollectionChangedAction,Object,Object,Int32)
    In This Topic
    Initializes a new instance of the NotifyCollectionChangedEventArgs class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal action As NotifyCollectionChangedAction, _
       ByVal newItem As System.Object, _
       ByVal oldItem As System.Object, _
       ByVal index As System.Integer _
    )
    public NotifyCollectionChangedEventArgs( 
       NotifyCollectionChangedAction action,
       System.object newItem,
       System.object oldItem,
       System.int index
    )

    Parameters

    action
    The NotifyCollectionChangedAction action that caused a INotifyCollectionChanged.CollectionChanged event.
    newItem
    The new item.
    oldItem
    The old item.
    index
    The zero-based index of the item.
    See Also