Class
SelectionChangedRoutedEventArgs

Provides data for SelectionChanged and PreviewSelectionChanged events.

Definition

Namespace:Telerik.Windows.Controls.TreeMap

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

cs-api-definition
public class SelectionChangedRoutedEventArgs : CancelRoutedEventArgs

Inheritance: objectRadRoutedEventArgsCancelRoutedEventArgsSelectionChangedRoutedEventArgs

Inherited Members CancelRoutedEventArgs.Cancel

Constructors

SelectionChangedRoutedEventArgs()

Initializes a new instance of the SelectionChangedRoutedEventArgs class.

Declaration

cs-api-definition
public SelectionChangedRoutedEventArgs()

SelectionChangedRoutedEventArgs(RoutedEvent, object)

Initializes a new instance of the SelectionChangedRoutedEventArgs class.

Declaration

cs-api-definition
public SelectionChangedRoutedEventArgs(RoutedEvent routedEvent, object selectedItem)

Parameters

routedEvent

RoutedEvent

The routed event.

selectedItem

object

The selected item.

SelectionChangedRoutedEventArgs(RoutedEvent, object, IList, IList)

Initializes a new instance of the SelectionChangedRoutedEventArgs class.

Declaration

cs-api-definition
public SelectionChangedRoutedEventArgs(RoutedEvent routedEvent, object selectedItem, IList addedItems, IList removedItems)

Parameters

routedEvent

RoutedEvent

The routed event.

selectedItem

object

The selected item.

addedItems

IList

The selected items.

removedItems

IList

The unselected item.

SelectionChangedRoutedEventArgs(RoutedEvent, object, object)

Initializes a new instance of the SelectionChangedRoutedEventArgs class.

Declaration

cs-api-definition
public SelectionChangedRoutedEventArgs(RoutedEvent routedEvent, object source, object selectedItem)

Parameters

routedEvent

RoutedEvent

The routed event.

source

object

The source.

selectedItem

object

The selected item.

Properties

AddedItems

Gets a list that contains items that were selected.

Declaration

cs-api-definition
public IList AddedItems { get; }

Property Value

IList

The selected items.

RemovedItems

Gets a list that contains items that were unselected.

Declaration

cs-api-definition
public IList RemovedItems { get; }

Property Value

IList

The unselected items.

SelectedItem

Gets the selected item.

Declaration

cs-api-definition
public object SelectedItem { get; }

Property Value

object

The selected item.