Class GridViewCellClipboardEventArgs
Allows to control Clipboard operations on a per-cell basis.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class GridViewCellClipboardEventArgs : CancelRoutedEventArgs
Constructors
GridViewCellClipboardEventArgs(GridViewCellInfo, Object)
Initializes a new instance of the GridViewCellClipboardEventArgs class.
Declaration
public GridViewCellClipboardEventArgs(GridViewCellInfo cell, object value)
Parameters
GridViewCellInfo
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. |
GridViewCellClipboardEventArgs(GridViewCellInfo, Object, GridViewCellType)
Initializes a new instance of the GridViewCellClipboardEventArgs class.
Declaration
public GridViewCellClipboardEventArgs(GridViewCellInfo cell, object value, GridViewCellType cellType)
Parameters
GridViewCellInfo
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. |
GridViewCellType
cellType
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
public GridViewCellInfo Cell { get; }
Property Value
GridViewCellInfo
|
CellType
Gets the type of the cell that will be affected by the Clipboard operation.
Declaration
public GridViewCellType CellType { get; }
Property Value
GridViewCellType
|
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
|