Event arguments used for the SelectedCellsChanging event. Provides information about the cells that are about to be added or removed from the SelectedCells collection.
Definition
Namespace:Telerik.Windows.Controls.GridView
Assembly:Telerik.Windows.Controls.GridView.dll
Syntax:
public class GridViewSelectedCellsChangingEventArgs : CancelEventArgs
Inheritance: objectEventArgsCancelEventArgsGridViewSelectedCellsChangingEventArgs
Inherited Members
Constructors
Initializes a new instance of the GridViewSelectedCellsChangingEventArgs class.
public GridViewSelectedCellsChangingEventArgs(IList<GridViewCellInfo> addedCells, IList<GridViewCellInfo> removedCells, bool isCancelable)
Cells that were added.
removedCellsIList<GridViewCellInfo>Cells that were removed.
isCancelableboolIndicates if this event is cancelable.
Initializes a new instance of the GridViewSelectedCellsChangingEventArgs class.
public GridViewSelectedCellsChangingEventArgs(IList<GridViewCellInfo> addedCells, IList<GridViewCellInfo> removedCells)
Cells that were added.
removedCellsIList<GridViewCellInfo>Cells that were removed.
Properties
The cells that were added.
public IList<GridViewCellInfo> AddedCells { get; }
Gets a value that indicates whether the event is cancelable.
public bool IsCancelable { get; }
true if this event is cancelable; otherwise, false.
The cells that were removed.
public IList<GridViewCellInfo> RemovedCells { get; }