Class GridSelectionChangingEventArgs
Provides data for SelectionChanging event.
Inherited Members
Namespace: Syncfusion.UI.Xaml.Grids
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public class GridSelectionChangingEventArgs : GridCancelEventArgsConstructors
GridSelectionChangingEventArgs(Object)
Initializes a new instance of GridSelectionChangingEventArgs class.
Declaration
public GridSelectionChangingEventArgs(object originalSource)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Object | originalSource | The source of the event. | 
Properties
AddedItems
Gets a list that contains the items that are being selected.
Declaration
public IList<object> AddedItems { get; }Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.IList<System.Object> | The list that contains the items that are being selected. | 
RemovedItems
Gets a list that contains the items that are being unselected.
Declaration
public IList<object> RemovedItems { get; }Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.IList<System.Object> | The list that contains the items that are being unselected. |