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 DataGridSelectionChangedEventArgs class.
Declaration
public DataGridSelectionChangedEventArgs(IEnumerable<object> removedItems, IEnumerable<object> addedItems)
Parameters
System.Collections.Generic.IEnumerable<System.Object>
removedItems
The removed items. |
System.Collections.Generic.IEnumerable<System.Object>
addedItems
The added items. |
Properties
AddedItems
Gets a IEnumerable that contains the items that were selected.
Declaration
public IEnumerable<object> AddedItems { get; }
Property Value
System.Collections.Generic.IEnumerable<System.Object>
|
RemovedItems
Gets a IEnumerable that contains the items that were deselected.
Declaration
public IEnumerable<object> RemovedItems { get; }
Property Value
System.Collections.Generic.IEnumerable<System.Object>
|