SelectedCellsChangedEventArgs Constructor (List<DataGridCellInfo>^, List<DataGridCellInfo>^)
.NET Framework (current version)
Initializes a new instance of the SelectedCellsChangedEventArgs class with the specified cells added to and removed from the selection.
Assembly: PresentationFramework (in PresentationFramework.dll)
public:
SelectedCellsChangedEventArgs(
List<DataGridCellInfo>^ addedCells,
List<DataGridCellInfo>^ removedCells
)
Parameters
- addedCells
-
Type:
System.Collections.Generic::List<DataGridCellInfo>^
The cells added to the selection.
- removedCells
-
Type:
System.Collections.Generic::List<DataGridCellInfo>^
The cells removed from the selection.
| Exception | Condition |
|---|---|
| ArgumentNullException | addedCells or removedCells is null. |
The input parameters cannot be null, but can be empty.
.NET Framework
Available since 4.0
Available since 4.0
Show: