Class GridViewSelectedCellsChangedEventArgs
Event arguments used for the SelectedCellsChanged event. Provides information about the cells that were added or removed from the SelectedCells collection.
Inheritance
Namespace: Telerik.Windows.Controls.GridView
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class GridViewSelectedCellsChangedEventArgs : EventArgs
Constructors
GridViewSelectedCellsChangedEventArgs(IList<GridViewCellInfo>, IList<GridViewCellInfo>)
Initializes a new instance of the Grid
Declaration
public GridViewSelectedCellsChangedEventArgs(IList<GridViewCellInfo> addedCells, IList<GridViewCellInfo> removedCells)
Parameters
System. Cells that were added. |
System. Cells that were removed. |
Properties
AddedCells
The cells that were added.
Declaration
public IList<GridViewCellInfo> AddedCells { get; }
Property Value
System.
|
RemovedCells
The cells that were removed.
Declaration
public IList<GridViewCellInfo> RemovedCells { get; }
Property Value
System.
|