Class SelectionChangingEventArgs
Initializes a new instance of the SelectionChangingEventArgs class.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Data.dll
Syntax
public class SelectionChangingEventArgs : CancelRoutedEventArgs
Constructors
SelectionChangingEventArgs(IList<Object>, IList<Object>)
Initializes a new instance of the SelectionChangingEventArgs class.
Declaration
public SelectionChangingEventArgs(IList<object> addedItems, IList<object> removedItems)
Parameters
System.Collections.Generic.IList<System.Object>
addedItems
The items that were selected. |
System.Collections.Generic.IList<System.Object>
removedItems
The items that were unselected. |
SelectionChangingEventArgs(IList<Object>, IList<Object>, Boolean)
Initializes a new instance of the SelectionChangingEventArgs class.
Declaration
public SelectionChangingEventArgs(IList<object> addedItems, IList<object> removedItems, bool isCancelable)
Parameters
System.Collections.Generic.IList<System.Object>
addedItems
The items that were selected. |
System.Collections.Generic.IList<System.Object>
removedItems
The items that were unselected. |
System.Boolean
isCancelable
If set to |
Properties
AddedItems
Gets a list that contains the items that are being selected.
Declaration
public ReadOnlyCollection<object> AddedItems { get; }
Property Value
System.Collections.ObjectModel.ReadOnlyCollection<System.Object>
|
IsCancelable
Gets a value that indicates whether the event is cancelable.
Declaration
public bool IsCancelable { get; }
Property Value
System.Boolean
|
RemovedItems
Gets a list that contains the items that are being unselected.
Declaration
public ReadOnlyCollection<object> RemovedItems { get; }
Property Value
System.Collections.ObjectModel.ReadOnlyCollection<System.Object>
|