Class RadSelectionChangedEventArgs
Provides data for the SelectionChanged event.
Inheritance
System.Object
RadSelectionChangedEventArgs
Namespace: Telerik.Maui
Assembly: Telerik.Maui.Core.dll
Syntax
public class RadSelectionChangedEventArgs : EventArgs
Constructors
RadSelectionChangedEventArgs(IEnumerable<Object>, IEnumerable<Object>)
Initializes a new instance of the RadSelectionChangedEventArgs class.
Declaration
public RadSelectionChangedEventArgs(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>
|