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
Initializes a new instance of the VirtualGridSelectedCellsChangingEventArgs class.
public VirtualGridSelectedCellsChangingEventArgs(IList<VirtualGridCellInfo> addedCells, IList<VirtualGridCellInfo> removedCells, bool isCancelable)
Cells that were added.
removedCellsIList<VirtualGridCellInfo>Cells that were removed.
isCancelableboolIndicates if this event is cancelable.
Initializes a new instance of the VirtualGridSelectedCellsChangingEventArgs class.
public VirtualGridSelectedCellsChangingEventArgs(IList<VirtualGridCellInfo> addedCells, IList<VirtualGridCellInfo> removedCells)
Cells that were added.
removedCellsIList<VirtualGridCellInfo>Cells that were removed.
Properties
The cells that were added.
public IList<VirtualGridCellInfo> 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<VirtualGridCellInfo> RemovedCells { get; }