Class DataGridSelectionChangedEventArgs
Provides data for the RadDataGrid SelectionChanged event.
Inheritance
System.Object
DataGridSelectionChangedEventArgs
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class DataGridSelectionChangedEventArgs : EventArgs
Constructors
DataGridSelectionChangedEventArgs(IEnumerable<Object>, IEnumerable<Object>)
Initializes a new instance of the Data
Declaration
public DataGridSelectionChangedEventArgs(IEnumerable<object> removedItems, IEnumerable<object> addedItems)
Parameters
System. The removed items. |
System. The added items. |
Properties
AddedItems
Gets a IEnumerable that contains the items that were selected.
Declaration
public IEnumerable<object> AddedItems { get; }
Property Value
System.
|
RemovedItems
Gets a IEnumerable that contains the items that were deselected.
Declaration
public IEnumerable<object> RemovedItems { get; }
Property Value
System.
|