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.GridView.dll

Syntax:

C#
public class GridViewCellClipboardEventArgs : CancelRoutedEventArgs

Inheritance: objectRadRoutedEventArgsCancelRoutedEventArgsGridViewCellClipboardEventArgs

Inherited Members CancelRoutedEventArgs.Cancel

Constructors

Initializes a new instance of the GridViewCellClipboardEventArgs class.

C#
public GridViewCellClipboardEventArgs(GridViewCellInfo cell, object value, GridViewCellType cellType)
Parameters:cellGridViewCellInfo

The cell that will be affected by the Clipboard operation.

valueobject

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

cellTypeGridViewCellType

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

Initializes a new instance of the GridViewCellClipboardEventArgs class.

C#
public GridViewCellClipboardEventArgs(GridViewCellInfo cell, object value)
Parameters:cellGridViewCellInfo

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 GridViewCellInfo Cell { get; }

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

C#
public GridViewCellType CellType { get; }

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

C#
public object Value { get; set; }