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