Class ItemSelectionChangingEventArgs
Provides data for the SelectionChanging event.
Inheritance
System.Object
ItemSelectionChangingEventArgs
Namespace: Syncfusion.Maui.ListView
Assembly: Syncfusion.Maui.ListView.dll
Syntax
public class ItemSelectionChangingEventArgs : CancelEventArgs
Constructors
ItemSelectionChangingEventArgs()
Initializes a new instance of the ItemSelectionChangingEventArgs class.
Declaration
public ItemSelectionChangingEventArgs()
Properties
AddedItems
Gets a list that contains 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 selection. |
RemovedItems
Gets a list that contains 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 be removed selection. |
See Also
System.ComponentModel.CancelEventArgs