Class DataGridSelectionChangedEventArgs
Provides data for the SelectionChanged event.
Inheritance
System.Object
DataGridSelectionChangedEventArgs
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridSelectionChangedEventArgs : EventArgs
Constructors
DataGridSelectionChangedEventArgs()
Initializes a new instance of the
Declaration
public DataGridSelectionChangedEventArgs()
Properties
AddedRows
Gets a list that contains the items that were selected.
Declaration
public IList<object> AddedRows { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Object> | A list of items selected. |
RemovedRows
Gets a list that contains the items that were unselected.
Declaration
public IList<object> RemovedRows { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Object> | A list of items unselected. |