ClassGridViewSelectedCellsChangedEventArgs
Class
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:
cs-api-definition
public class GridViewSelectedCellsChangedEventArgs : EventArgs
Inheritance: objectEventArgsGridViewSelectedCellsChangedEventArgs
Inherited Members
Constructors
GridViewSelectedCellsChangedEventArgs(IList<GridViewCellInfo>, IList<GridViewCellInfo>)
Initializes a new instance of the GridViewSelectedCellsChangedEventArgs class.
Declaration
cs-api-definition
public GridViewSelectedCellsChangedEventArgs(IList<GridViewCellInfo> addedCells, IList<GridViewCellInfo> removedCells)
Parameters
addedCells
Cells that were added.
removedCells
Cells that were removed.
Properties
AddedCells
The cells that were added.
Declaration
cs-api-definition
public IList<GridViewCellInfo> AddedCells { get; }
Property Value
RemovedCells
The cells that were removed.
Declaration
cs-api-definition
public IList<GridViewCellInfo> RemovedCells { get; }
Property Value