DataGridColumn::OnPastingCellClipboardContent Method (Object^, Object^)

.NET Framework (current version)
 

Raises the PastingCellClipboardContent event.

Namespace:   System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)

public:
virtual void OnPastingCellClipboardContent(
	Object^ item,
	Object^ cellContent
)

Parameters

item
Type: System::Object^

The data context for the selected element.

cellContent
Type: System::Object^

The content to paste into the cell.

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.

.NET Framework
Available since 4.0
Return to top
Show: