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

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