Class SelectionEventArgs
Provides data for the SelectionChanged event in the TreeMap control.
Inheritance
System.Object
System.EventArgs
SelectionEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
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> |