Class ItemSelectionChangedEventArgs
Provides data for the SelectionChanged event.
Inheritance
System.Object
ItemSelectionChangedEventArgs
Namespace: Syncfusion.Maui.TreeView
Assembly: Syncfusion.Maui.TreeView.dll
Syntax
public class ItemSelectionChangedEventArgs : EventArgs
Constructors
ItemSelectionChangedEventArgs()
Initializes a new instance of the ItemSelectionChangedEventArgs class.
Declaration
public ItemSelectionChangedEventArgs()
Properties
AddedItems
Gets a list of the items that were selected.
Declaration
public IList<object> AddedItems { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Object> | A list of items to be selected. |
RemovedItems
Gets a list of the items that were unselected.
Declaration
public IList<object> RemovedItems { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Object> | A list of items to remove from the selection. |