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 GridViewSelectedCellsChangedEventArgs class.
Declaration
public GridViewSelectedCellsChangedEventArgs(IList<GridViewCellInfo> addedCells, IList<GridViewCellInfo> removedCells)
Parameters
System.Collections.Generic.IList<GridViewCellInfo>
addedCells
Cells that were added. |
System.Collections.Generic.IList<GridViewCellInfo>
removedCells
Cells that were removed. |
Properties
AddedCells
The cells that were added.
Declaration
public IList<GridViewCellInfo> AddedCells { get; }
Property Value
System.Collections.Generic.IList<GridViewCellInfo>
|
RemovedCells
The cells that were removed.
Declaration
public IList<GridViewCellInfo> RemovedCells { get; }
Property Value
System.Collections.Generic.IList<GridViewCellInfo>
|