DataGridColumn.OnCopyingCellClipboardContent(Object) Method

Definition

Raises the CopyingCellClipboardContent event.

public:
 virtual System::Object ^ OnCopyingCellClipboardContent(System::Object ^ item);
public virtual object OnCopyingCellClipboardContent (object item);
abstract member OnCopyingCellClipboardContent : obj -> obj
override this.OnCopyingCellClipboardContent : obj -> obj
Public Overridable Function OnCopyingCellClipboardContent (item As Object) As Object

Parameters

item
Object

The data context for the selected element.

Returns

An object that represents the content of the cell.

Remarks

This method is called for each selected cell to retrieve the default cell content. It then raises the CopyingCellClipboardContent event. You can handle the event to modify the cell content before it is returned.

Applies to

See also