New to Telerik UI for WPFStart a free 30-day trial

Allows to control Clipboard operations on a per-cell basis.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.VirtualGrid.dll

Syntax:

C#
public class VirtualGridCellClipboardEventArgs : CancelRoutedEventArgs

Inheritance: objectRadRoutedEventArgsCancelRoutedEventArgsVirtualGridCellClipboardEventArgs

Inherited Members CancelRoutedEventArgs.Cancel

Constructors

Initializes a new instance of the VirtualGridCellClipboardEventArgs class.

C#
public VirtualGridCellClipboardEventArgs(VirtualGridCellInfo cell, object value)
Parameters:cellVirtualGridCellInfo

The cell that will be affected by the Clipboard operation.

valueobject

The cell value that the Clipboard operation will be performed with.

Properties

Gets the cell that will be affected by the Clipboard operation.

C#
public VirtualGridCellInfo Cell { get; }

Gets or sets the cell value that the Clipboard operation will be performed with.

C#
public object Value { get; set; }