Class SelectionChangeEventArgs
Initializes a new instance of the SelectionChangeEventArgs class.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Data.dll
Syntax
public class SelectionChangeEventArgs : RadRoutedEventArgs
Constructors
SelectionChangeEventArgs(IList<Object>, IList<Object>)
Initializes a new instance of the SelectionChangeEventArgs class.
Declaration
public SelectionChangeEventArgs(IList<object> addedItems, IList<object> removedItems)
Parameters
System.Collections.Generic.IList<System.Object>
addedItems
|
System.Collections.Generic.IList<System.Object>
removedItems
|
Properties
AddedItems
Gets a list that contains the items that were selected.
Declaration
public ReadOnlyCollection<object> AddedItems { get; }
Property Value
System.Collections.ObjectModel.ReadOnlyCollection<System.Object>
|
RemovedItems
Gets a list that contains the items that were unselected.
Declaration
public ReadOnlyCollection<object> RemovedItems { get; }
Property Value
System.Collections.ObjectModel.ReadOnlyCollection<System.Object>
|