DataGridColumn.OnPastingCellClipboardContent(Object, Object) Method

Definition

Raises the PastingCellClipboardContent event.

public:
 virtual void OnPastingCellClipboardContent(System::Object ^ item, System::Object ^ cellContent);
public virtual void OnPastingCellClipboardContent (object item, object cellContent);
abstract member OnPastingCellClipboardContent : obj * obj -> unit
override this.OnPastingCellClipboardContent : obj * obj -> unit
Public Overridable Sub OnPastingCellClipboardContent (item As Object, cellContent As Object)

Parameters

item
Object

The data context for the selected element.

cellContent
Object

The content to paste into the cell.

Remarks

This method can be used as a helper if you provide a custom paste implementation for the DataGrid. The cell content is stored in the item object.

This method raises the PastingCellClipboardContent event. You can handle the event to modify the cell content before it is pasted into the cell. You can set cellContent to null to cancel the paste action.

Applies to

See also