Class TreeMapSelectionChangedEventArgs
Provides data for the event when the selection is changed in the SfTreeMap control.
Inheritance
System.Object
TreeMapSelectionChangedEventArgs
Namespace: Syncfusion.Maui.TreeMap
Assembly: Syncfusion.Maui.TreeMap.dll
Syntax
public class TreeMapSelectionChangedEventArgs : EventArgs
Constructors
TreeMapSelectionChangedEventArgs()
Declaration
public TreeMapSelectionChangedEventArgs()
Properties
Category
Gets the hierarchical path of the selected item within its groups.
Declaration
public string Category { get; }
Property Value
Type |
---|
System.String |
GroupLevel
Gets the level of grouping for the selected items.
Declaration
public int GroupLevel { get; }
Property Value
Type |
---|
System.Int32 |
Remarks
A GroupLevel of -1 indicates that the item is a leaf item and not a group item.
IsSelected
Gets a value indicating whether the items are selected or deselected.
Declaration
public bool IsSelected { get; }
Property Value
Type |
---|
System.Boolean |
NewItems
Gets the newly selected item after the selection change.
Declaration
public object NewItems { get; }
Property Value
Type |
---|
System.Object |
OldItems
Gets the previously selected item before the selection change.
Declaration
public object OldItems { get; }
Property Value
Type |
---|
System.Object |