Class SelectionEventArgs
Provides data for the SelectionChanged event in the TreeMap control.
Inheritance
System.Object
SelectionEventArgs
Namespace: Syncfusion.Windows.Forms.TreeMap
Assembly: Syncfusion.TreeMap.Windows.dll
Syntax
public class SelectionEventArgs : EventArgs
Remarks
Contains information about the items that were previously selected and the items that are newly selected.
Constructors
SelectionEventArgs()
Declaration
public SelectionEventArgs()
Properties
Newitems
Gets the collection of items that are currently selected after the selection change occurred.
Declaration
public ObservableCollection<object> Newitems { get; }
Property Value
| Type |
|---|
| System.Collections.ObjectModel.ObservableCollection<System.Object> |
OldItems
Gets the collection of items that were previously selected before the selection change occurred.
Declaration
public ObservableCollection<object> OldItems { get; }
Property Value
| Type |
|---|
| System.Collections.ObjectModel.ObservableCollection<System.Object> |