Class SelectionChangingEventArgs
Provides event data for the SelectionChanging event.
Inheritance
System.Object
SelectionChangingEventArgs
Namespace: Syncfusion.Maui.Inputs
Assembly: Syncfusion.Maui.Inputs.dll
Syntax
public class SelectionChangingEventArgs : CancelEventArgs
Constructors
SelectionChangingEventArgs()
Declaration
public SelectionChangingEventArgs()
Properties
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. |