ClassVirtualGridSelectedCellsChangedEventArgs
Class
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:
cs-api-definition
public class VirtualGridSelectedCellsChangedEventArgs : EventArgs
Inheritance: objectEventArgsVirtualGridSelectedCellsChangedEventArgs
Inherited Members
Constructors
VirtualGridSelectedCellsChangedEventArgs(IList<VirtualGridCellInfo>, IList<VirtualGridCellInfo>)
Initializes a new instance of the VirtualGridSelectedCellsChangedEventArgs class.
Declaration
cs-api-definition
public VirtualGridSelectedCellsChangedEventArgs(IList<VirtualGridCellInfo> addedCells, IList<VirtualGridCellInfo> removedCells)
Parameters
addedCells
Cells that were added.
removedCells
Cells that were removed.
Properties
AddedCells
The cells that were added.
Declaration
cs-api-definition
public IList<VirtualGridCellInfo> AddedCells { get; }
Property Value
RemovedCells
The cells that were removed.
Declaration
cs-api-definition
public IList<VirtualGridCellInfo> RemovedCells { get; }
Property Value