Class GridViewSelectedCellsChangingEventArgs
Event arguments used for the SelectedCellsChanging event. Provides information about the cells that are about to be added or removed from the SelectedCells collection.
Inheritance
Namespace: Telerik.Windows.Controls.GridView
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class GridViewSelectedCellsChangingEventArgs : CancelEventArgs
Constructors
GridViewSelectedCellsChangingEventArgs(IList<GridViewCellInfo>, IList<GridViewCellInfo>)
Initializes a new instance of the Grid
Declaration
public GridViewSelectedCellsChangingEventArgs(IList<GridViewCellInfo> addedCells, IList<GridViewCellInfo> removedCells)
Parameters
System. Cells that were added. |
System. Cells that were removed. |
GridViewSelectedCellsChangingEventArgs(IList<GridViewCellInfo>, IList<GridViewCellInfo>, Boolean)
Initializes a new instance of the Grid
Declaration
public GridViewSelectedCellsChangingEventArgs(IList<GridViewCellInfo> addedCells, IList<GridViewCellInfo> removedCells, bool isCancelable)
Parameters
System. Cells that were added. |
System. Cells that were removed. |
System. Indicates if this event is cancelable. |
Properties
AddedCells
The cells that were added.
Declaration
public IList<GridViewCellInfo> AddedCells { get; }
Property Value
System.
|
IsCancelable
Gets a value that indicates whether the event is cancelable.
Declaration
public bool IsCancelable { get; }
Property Value
System.
|
RemovedCells
The cells that were removed.
Declaration
public IList<GridViewCellInfo> RemovedCells { get; }
Property Value
System.
|