Class VirtualGridSelectedCellsChangingEventArgs
Event arguments used for the SelectedCellsChanging event. Provides information about the cells that are about to be added or removed from the SelectedCells collection.
Inheritance
Namespace: Telerik.Windows.Controls.VirtualGrid
Assembly: Telerik.Windows.Controls.VirtualGrid.dll
Syntax
public class VirtualGridSelectedCellsChangingEventArgs : CancelEventArgs
Constructors
VirtualGridSelectedCellsChangingEventArgs(IList<VirtualGridCellInfo>, IList<VirtualGridCellInfo>)
Initializes a new instance of the VirtualGridSelectedCellsChangingEventArgs class.
Declaration
public VirtualGridSelectedCellsChangingEventArgs(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. |
VirtualGridSelectedCellsChangingEventArgs(IList<VirtualGridCellInfo>, IList<VirtualGridCellInfo>, Boolean)
Initializes a new instance of the VirtualGridSelectedCellsChangingEventArgs class.
Declaration
public VirtualGridSelectedCellsChangingEventArgs(IList<VirtualGridCellInfo> addedCells, IList<VirtualGridCellInfo> removedCells, bool isCancelable)
Parameters
System.Collections.Generic.IList<VirtualGridCellInfo>
addedCells
Cells that were added. |
System.Collections.Generic.IList<VirtualGridCellInfo>
removedCells
Cells that were removed. |
System.Boolean
isCancelable
Indicates if this event is cancelable. |
Properties
AddedCells
The cells that were added.
Declaration
public IList<VirtualGridCellInfo> AddedCells { get; }
Property Value
System.Collections.Generic.IList<VirtualGridCellInfo>
|
IsCancelable
Gets a value that indicates whether the event is cancelable.
Declaration
public bool IsCancelable { get; }
Property Value
System.Boolean
|
RemovedCells
The cells that were removed.
Declaration
public IList<VirtualGridCellInfo> RemovedCells { get; }
Property Value
System.Collections.Generic.IList<VirtualGridCellInfo>
|