ComponentOne DataGrid for WPF and Silverlight
C1.Silverlight.DataGrid Namespace / C1CollectionChangedEventArgs Class / RemovedItems Property

In This Topic
    RemovedItems Property (C1CollectionChangedEventArgs)
    In This Topic
    Gets the item affected by a Remove operation.
    Syntax
    'Declaration
     
    
    Public Property RemovedItems As KeyValuePair(Of Integer,Object)()
    public KeyValuePair<int,object>[] RemovedItems {get; set;}
    Remarks
    The removed items are represented by a KeyValuePair[int,object], where the key is the index of the removed item and the value is the data item itself.
    See Also