ClassSelectionChangingEventArgs
Initializes a new instance of the SelectionChangingEventArgs class.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Data.dll
Syntax:
public class SelectionChangingEventArgs : CancelRoutedEventArgs
Inheritance: objectRadRoutedEventArgsCancelRoutedEventArgsSelectionChangingEventArgs
Inherited Members
Constructors
SelectionChangingEventArgs(IList<object>, IList<object>)
Initializes a new instance of the SelectionChangingEventArgs class.
SelectionChangingEventArgs(IList<object>, IList<object>, bool)
Initializes a new instance of the SelectionChangingEventArgs class.
Declaration
public SelectionChangingEventArgs(IList<object> addedItems, IList<object> removedItems, bool isCancelable)
Parameters
addedItems
The items that were selected.
removedItems
The items that were unselected.
isCancelable
If set to true [is cancelable].
Properties
AddedItems
Gets a list that contains the items that are being selected.
Declaration
public ReadOnlyCollection<object> AddedItems { get; }
Property Value
IsCancelable
Gets a value that indicates whether the event is cancelable.
Declaration
public bool IsCancelable { get; }
Property Value
true if this instance is cancelable; otherwise, false.
RemovedItems
Gets a list that contains the items that are being unselected.
Declaration
public ReadOnlyCollection<object> RemovedItems { get; }
Property Value