Class
VirtualGridSelectedCellsChangedEventArgs

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 EventArgs.Empty

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

IList<VirtualGridCellInfo>

Cells that were added.

removedCells

IList<VirtualGridCellInfo>

Cells that were removed.

Properties

AddedCells

The cells that were added.

Declaration

cs-api-definition
public IList<VirtualGridCellInfo> AddedCells { get; }

Property Value

IList<VirtualGridCellInfo>

RemovedCells

The cells that were removed.

Declaration

cs-api-definition
public IList<VirtualGridCellInfo> RemovedCells { get; }

Property Value

IList<VirtualGridCellInfo>