ClassVirtualGridSelectedCellsChangingEventArgs
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.VirtualGrid
Assembly:Telerik.Windows.Controls.VirtualGrid.dll
Syntax:
public class VirtualGridSelectedCellsChangingEventArgs : CancelEventArgs
Inheritance: objectEventArgsCancelEventArgsVirtualGridSelectedCellsChangingEventArgs
Inherited Members
Constructors
VirtualGridSelectedCellsChangingEventArgs(IList<VirtualGridCellInfo>, IList<VirtualGridCellInfo>)
Initializes a new instance of the VirtualGridSelectedCellsChangingEventArgs class.
Declaration
public VirtualGridSelectedCellsChangingEventArgs(IList<VirtualGridCellInfo> addedCells, IList<VirtualGridCellInfo> removedCells)
Parameters
addedCells
Cells that were added.
removedCells
Cells that were removed.
VirtualGridSelectedCellsChangingEventArgs(IList<VirtualGridCellInfo>, IList<VirtualGridCellInfo>, bool)
Initializes a new instance of the VirtualGridSelectedCellsChangingEventArgs class.
Declaration
public VirtualGridSelectedCellsChangingEventArgs(IList<VirtualGridCellInfo> addedCells, IList<VirtualGridCellInfo> 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<VirtualGridCellInfo> 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<VirtualGridCellInfo> RemovedCells { get; }
Property Value