Class VirtualGridSelectedCellsChangedEventArgs
Event arguments used for the SelectedCellsChanged event. Provides information about the cells that were added or removed from the SelectedCells collection.
Inheritance
Namespace: Telerik.Windows.Controls.VirtualGrid
Assembly: Telerik.Windows.Controls.VirtualGrid.dll
Syntax
public class VirtualGridSelectedCellsChangedEventArgs : EventArgs
Constructors
VirtualGridSelectedCellsChangedEventArgs(IList<VirtualGridCellInfo>, IList<VirtualGridCellInfo>)
Initializes a new instance of the Virtual
Declaration
public VirtualGridSelectedCellsChangedEventArgs(IList<VirtualGridCellInfo> addedCells, IList<VirtualGridCellInfo> removedCells)
Parameters
System. Cells that were added. |
System. Cells that were removed. |
Properties
AddedCells
The cells that were added.
Declaration
public IList<VirtualGridCellInfo> AddedCells { get; }
Property Value
System.
|
RemovedCells
The cells that were removed.
Declaration
public IList<VirtualGridCellInfo> RemovedCells { get; }
Property Value
System.
|