Scheduler for UWP | ComponentOne
C1.C1Schedule Namespace / ListChangedEventArgs Class / ListChangedEventArgs Constructor / ListChangedEventArgs Constructor(ListChangedType,Int32,Int32)
A ListChangedType value indicating the type of change.
The new index of the item that was moved.
The old index of the item that was moved.

In This Topic
    ListChangedEventArgs Constructor(ListChangedType,Int32,Int32)
    In This Topic
    Initializes a new instance of the ListChangedEventArgs class given the type of change and the old and new index of the item that was moved.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal listChangedType As ListChangedType, _
       ByVal newIndex As Integer, _
       ByVal oldIndex As Integer _
    )
    public ListChangedEventArgs( 
       ListChangedType listChangedType,
       int newIndex,
       int oldIndex
    )

    Parameters

    listChangedType
    A ListChangedType value indicating the type of change.
    newIndex
    The new index of the item that was moved.
    oldIndex
    The old index of the item that was moved.
    See Also