Class SelectionChangedEventArgs
Provides event data for the SelectionChanged event.
Inheritance
System.Object
SelectionChangedEventArgs
Namespace: Syncfusion.Maui.Inputs
Assembly: Syncfusion.Maui.Inputs.dll
Syntax
public class SelectionChangedEventArgs : EventArgs
Constructors
SelectionChangedEventArgs()
Declaration
public SelectionChangedEventArgs()
Properties
AddedItems
Gets the currently selected item..
Declaration
public IReadOnlyList<object> AddedItems { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<System.Object> | Returns the collection of currently selected item in this event. |
CurrentSelection
Gets the currently selected item..
Declaration
public IReadOnlyList<object> CurrentSelection { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<System.Object> | Returns the collection of currently selected item in this event. |
PreviousSelection
Gets the item that was previously selected.
Declaration
public IReadOnlyList<object> PreviousSelection { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<System.Object> | Returns the collection of item that were previously selected in this event. |
RemovedItems
Gets the currently removed item..
Declaration
public IReadOnlyList<object> RemovedItems { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<System.Object> | Returns the collection of currently removed item in this event. |