Class SelectionChangedRoutedEventArgs
Provides data for Selection
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 Selection
Declaration
public SelectionChangedRoutedEventArgs()
SelectionChangedRoutedEventArgs(RoutedEvent, Object)
Initializes a new instance of the Selection
Declaration
public SelectionChangedRoutedEventArgs(RoutedEvent routedEvent, object selectedItem)
Parameters
System. The routed event. |
System. The selected item. |
SelectionChangedRoutedEventArgs(RoutedEvent, Object, IList, IList)
Initializes a new instance of the Selection
Declaration
public SelectionChangedRoutedEventArgs(RoutedEvent routedEvent, object selectedItem, IList addedItems, IList removedItems)
Parameters
System. The routed event. |
System. The selected item. |
System. The selected items. |
System. The unselected item. |
SelectionChangedRoutedEventArgs(RoutedEvent, Object, Object)
Initializes a new instance of the Selection
Declaration
public SelectionChangedRoutedEventArgs(RoutedEvent routedEvent, object source, object selectedItem)
Parameters
System. The routed event. |
System. The source. |
System. The selected item. |
Properties
AddedItems
Gets a list that contains items that were selected.
Declaration
public IList AddedItems { get; }
Property Value
System. The selected items. |
RemovedItems
Gets a list that contains items that were unselected.
Declaration
public IList RemovedItems { get; }
Property Value
System. The unselected items. |
SelectedItem
Gets the selected item.
Declaration
public object SelectedItem { get; }
Property Value
System. The selected item. |