Class GridSelectionChangingEventArgs
Provides data for the SelectionChanging event.
Inherited Members
Namespace: Syncfusion.SfDataGrid.XForms
Assembly: Syncfusion.SfDataGrid.XForms.dll
Syntax
public class GridSelectionChangingEventArgs : CancelEventArgs
Constructors
GridSelectionChangingEventArgs(Object)
Initializes a new instance of the GridSelectionChangingEventArgs class using the specified source.
Declaration
public GridSelectionChangingEventArgs(object originalSource)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | originalSource | The original source that raises the 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