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 Selection
Declaration
public SelectionChangingEventArgs(IList<object> addedItems, IList<object> removedItems)
Parameters
System. The items that were selected. |
System. The items that were unselected. |
SelectionChangingEventArgs(IList<Object>, IList<Object>, Boolean)
Initializes a new instance of the Selection
Declaration
public SelectionChangingEventArgs(IList<object> addedItems, IList<object> removedItems, bool isCancelable)
Parameters
System. The items that were selected. |
System. The items that were unselected. |
System. 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.
|
IsCancelable
Gets a value that indicates whether the event is cancelable.
Declaration
public bool IsCancelable { get; }
Property Value
System.
|
RemovedItems
Gets a list that contains the items that are being unselected.
Declaration
public ReadOnlyCollection<object> RemovedItems { get; }
Property Value
System.
|