Event arguments used for the SelectedCellsChanged event. Provides information about the cells that were added or removed from the SelectedCells collection.
Definition
Namespace:Telerik.Windows.Controls.VirtualGrid
Assembly:Telerik.Windows.Controls.VirtualGrid.dll
Syntax:
C#
public class VirtualGridSelectedCellsChangedEventArgs : EventArgs
Inheritance: objectEventArgsVirtualGridSelectedCellsChangedEventArgs
Inherited Members
Constructors
Initializes a new instance of the VirtualGridSelectedCellsChangedEventArgs class.
C#
public VirtualGridSelectedCellsChangedEventArgs(IList<VirtualGridCellInfo> addedCells, IList<VirtualGridCellInfo> removedCells)
Cells that were added.
removedCellsIList<VirtualGridCellInfo>Cells that were removed.
Properties
The cells that were added.
C#
public IList<VirtualGridCellInfo> AddedCells { get; }
The cells that were removed.
C#
public IList<VirtualGridCellInfo> RemovedCells { get; }