Event arguments used for the SelectedCellsChanged event. Provides information about the cells that were added or removed from the SelectedCells collection.
Definition
Namespace:Telerik.Windows.Controls.GridView
Assembly:Telerik.Windows.Controls.GridView.dll
Syntax:
C#
public class GridViewSelectedCellsChangedEventArgs : EventArgs
Inheritance: objectEventArgsGridViewSelectedCellsChangedEventArgs
Inherited Members
Constructors
Initializes a new instance of the GridViewSelectedCellsChangedEventArgs class.
C#
public GridViewSelectedCellsChangedEventArgs(IList<GridViewCellInfo> addedCells, IList<GridViewCellInfo> removedCells)
Cells that were added.
removedCellsIList<GridViewCellInfo>Cells that were removed.
Properties
The cells that were added.
C#
public IList<GridViewCellInfo> AddedCells { get; }
The cells that were removed.
C#
public IList<GridViewCellInfo> RemovedCells { get; }