Class SelectionChangedEventArgs
Provides data for SelectionChanged event.
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.WinForms.DataGrid.Events
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class SelectionChangedEventArgs : GridEventArgs
Constructors
SelectionChangedEventArgs(Object)
Initializes a new instance of the SelectionChangedEventArgs class.
Declaration
public SelectionChangedEventArgs(object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSource | The source of 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> | The list that contains the items that were 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> | The list that contains the items that are being unselected. |