Class VirtualGridSelectedCellsChangedEventArgs
Event arguments used for the SelectedCellsChanged event. Provides information about the cells that were added or removed from the SelectedCells collection.
Inheritance
Inherited Members
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 VirtualGridSelectedCellsChangedEventArgs class.
Declaration
public VirtualGridSelectedCellsChangedEventArgs(IList<VirtualGridCellInfo> addedCells, IList<VirtualGridCellInfo> removedCells)
Parameters
System.Collections.Generic.IList<VirtualGridCellInfo>
addedCells
Cells that were added. |
System.Collections.Generic.IList<VirtualGridCellInfo>
removedCells
Cells that were removed. |
Properties
AddedCells
The cells that were added.
Declaration
public IList<VirtualGridCellInfo> AddedCells { get; }
Property Value
System.Collections.Generic.IList<VirtualGridCellInfo>
|
RemovedCells
The cells that were removed.
Declaration
public IList<VirtualGridCellInfo> RemovedCells { get; }
Property Value
System.Collections.Generic.IList<VirtualGridCellInfo>
|