Class GridSelectionChangedEventArgs
Provides data for the SelectionChanged event.
Inheritance
System.Object
    GridSelectionChangedEventArgs
  Namespace: Syncfusion.SfDataGrid
Assembly: Syncfusion.SfDataGrid.Android.dll
Syntax
public class GridSelectionChangedEventArgs : EventArgs
  Constructors
GridSelectionChangedEventArgs(Object)
Initializes a new instance of the GridSelectionChangedEventArgs class using the specified source.
Declaration
public GridSelectionChangedEventArgs(object originalSource)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Object | originalSource | The original source that raises the event.  | 
      
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 selected.  | 
      
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 unselected.  |