Class
GridViewCellClipboardEventArgs

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

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

cs-api-definition
public class GridViewCellClipboardEventArgs : CancelRoutedEventArgs

Inheritance: objectRadRoutedEventArgsCancelRoutedEventArgsGridViewCellClipboardEventArgs

Inherited Members CancelRoutedEventArgs.Cancel

Constructors

GridViewCellClipboardEventArgs(GridViewCellInfo, object)

Initializes a new instance of the GridViewCellClipboardEventArgs class.

Declaration

cs-api-definition
public GridViewCellClipboardEventArgs(GridViewCellInfo cell, object value)

Parameters

cell

GridViewCellInfo

The cell that will be affected by the Clipboard operation.

value

object

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

GridViewCellClipboardEventArgs(GridViewCellInfo, object, GridViewCellType)

Initializes a new instance of the GridViewCellClipboardEventArgs class.

Declaration

cs-api-definition
public GridViewCellClipboardEventArgs(GridViewCellInfo cell, object value, GridViewCellType cellType)

Parameters

cell

GridViewCellInfo

The cell that will be affected by the Clipboard operation.

value

object

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

cellType

GridViewCellType

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

Properties

Cell

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

Declaration

cs-api-definition
public GridViewCellInfo Cell { get; }

Property Value

GridViewCellInfo

CellType

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

Declaration

cs-api-definition
public GridViewCellType CellType { get; }

Property Value

GridViewCellType

Value

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

Declaration

cs-api-definition
public object Value { get; set; }

Property Value

object