Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TreeListView.ClipboardRowCellValuePasting Event

Fires when an end-user pastes a cell to the TreeListView and allows you to process the pasted data.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v24.2.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public event EventHandler<ClipboardRowCellValuePastingEventArgs> ClipboardRowCellValuePasting

#Event Data

The ClipboardRowCellValuePasting event's data class is ClipboardRowCellValuePastingEventArgs. The following properties provide information specific to this event:

Property Description
Cancel Gets or sets the value indicating whether to prevent pasting a cell value.
Column Gets a column where a new cell value is pasted.
OldValue Gets the cell value that was before pasting a new value.
OriginalValue Gets the original pasted value.
RowHandle Gets a handle of a row where a new cell value is pasted.
Value Gets or sets a value that is pasted to cell.

#Remarks

Refer to the Paste Operations topic to learn more.

See Also