Class SelectionChangedRoutedEventArgs
Provides data for SelectionChanged and PreviewSelectionChanged events.
Inherited Members
Namespace: Telerik.Windows.Controls.TreeMap
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public class SelectionChangedRoutedEventArgs : CancelRoutedEventArgs
Constructors
SelectionChangedRoutedEventArgs()
Initializes a new instance of the SelectionChangedRoutedEventArgs class.
Declaration
public SelectionChangedRoutedEventArgs()
SelectionChangedRoutedEventArgs(RoutedEvent, Object)
Initializes a new instance of the SelectionChangedRoutedEventArgs class.
Declaration
public SelectionChangedRoutedEventArgs(RoutedEvent routedEvent, object selectedItem)
Parameters
RoutedEvent
routedEvent
The routed event. |
System.Object
selectedItem
The selected item. |
SelectionChangedRoutedEventArgs(RoutedEvent, Object, IList, IList)
Initializes a new instance of the SelectionChangedRoutedEventArgs class.
Declaration
public SelectionChangedRoutedEventArgs(RoutedEvent routedEvent, object selectedItem, IList addedItems, IList removedItems)
Parameters
RoutedEvent
routedEvent
The routed event. |
System.Object
selectedItem
The selected item. |
System.Collections.IList
addedItems
The selected items. |
System.Collections.IList
removedItems
The unselected item. |
SelectionChangedRoutedEventArgs(RoutedEvent, Object, Object)
Initializes a new instance of the SelectionChangedRoutedEventArgs class.
Declaration
public SelectionChangedRoutedEventArgs(RoutedEvent routedEvent, object source, object selectedItem)
Parameters
RoutedEvent
routedEvent
The routed event. |
System.Object
source
The source. |
System.Object
selectedItem
The selected item. |
Properties
AddedItems
Gets a list that contains items that were selected.
Declaration
public IList AddedItems { get; }
Property Value
System.Collections.IList
The selected items. |
RemovedItems
Gets a list that contains items that were unselected.
Declaration
public IList RemovedItems { get; }
Property Value
System.Collections.IList
The unselected items. |
SelectedItem
Gets the selected item.
Declaration
public object SelectedItem { get; }
Property Value
System.Object
The selected item. |