Class VirtualGridCellClipboardEventArgs
Allows to control Clipboard operations on a per-cell basis.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.VirtualGrid.dll
Syntax
public class VirtualGridCellClipboardEventArgs : CancelRoutedEventArgs
Constructors
VirtualGridCellClipboardEventArgs(VirtualGridCellInfo, Object)
Initializes a new instance of the VirtualGridCellClipboardEventArgs class.
Declaration
public VirtualGridCellClipboardEventArgs(VirtualGridCellInfo cell, object value)
Parameters
VirtualGridCellInfo
cell
The cell that will be affected by the Clipboard operation. |
System.Object
value
The cell value that the Clipboard operation will be performed with. |
Properties
Cell
Gets the cell that will be affected by the Clipboard operation.
Declaration
public VirtualGridCellInfo Cell { get; }
Property Value
VirtualGridCellInfo
|
Value
Gets or sets the cell value that the Clipboard operation will be performed with.
Declaration
public object Value { get; set; }
Property Value
System.Object
|