ClassGridViewSelectedCellsChangingEventArgs
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
GridViewSelectedCellsChangingEventArgs(IList<GridViewCellInfo>, IList<GridViewCellInfo>)
Initializes a new instance of the GridViewSelectedCellsChangingEventArgs class.
Declaration
public GridViewSelectedCellsChangingEventArgs(IList<GridViewCellInfo> addedCells, IList<GridViewCellInfo> removedCells)
Parameters
addedCells
Cells that were added.
removedCells
Cells that were removed.
GridViewSelectedCellsChangingEventArgs(IList<GridViewCellInfo>, IList<GridViewCellInfo>, bool)
Initializes a new instance of the GridViewSelectedCellsChangingEventArgs class.
Declaration
public GridViewSelectedCellsChangingEventArgs(IList<GridViewCellInfo> addedCells, IList<GridViewCellInfo> removedCells, bool isCancelable)
Parameters
addedCells
Cells that were added.
removedCells
Cells that were removed.
isCancelable
Indicates if this event is cancelable.
Properties
AddedCells
The cells that were added.
Declaration
public IList<GridViewCellInfo> AddedCells { get; }
Property Value
IsCancelable
Gets a value that indicates whether the event is cancelable.
Declaration
public bool IsCancelable { get; }
Property Value
true if this event is cancelable; otherwise, false.
RemovedCells
The cells that were removed.
Declaration
public IList<GridViewCellInfo> RemovedCells { get; }
Property Value