Class GridSelectionChangingEventArgs
Provides data for the SelectionChanging event.
Inheritance
System.Object
GridSelectionChangingEventArgs
Namespace: Syncfusion.SfDataGrid
Assembly: Syncfusion.SfDataGrid.iOS.dll
Syntax
public class GridSelectionChangingEventArgs : CancelEventArgs
Constructors
GridSelectionChangingEventArgs(Object)
Initializes a new instance of the GridSelectionChangingEventArgs class.
Declaration
public GridSelectionChangingEventArgs(object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSource | The original source that raises the SelectionChanging event. |
Properties
AddedItems
Gets a list that contains the items to be selected.
Declaration
public IList<object> AddedItems { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Object> | A list of items to be selected. |
RemovedItems
Gets a list that contains the items to be unselected.
Declaration
public IList<object> RemovedItems { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.Object> | A list of items to be unselected. |
See Also
System.ComponentModel.CancelEventArgs