TreeListView.ClipboardRowPasting Event
In This Article
Fires when an end-user pastes a node 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<ClipboardRowPastingEventArgs> ClipboardRowPasting
#Event Data
The ClipboardRowPasting event's data class is ClipboardRowPastingEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Cancel | Gets or sets the value indicating whether to prevent pasting a row values. |
Cell |
Gets an array of pasted values. |
Columns | Gets an array of target columns. |
Data |
Gets the total count of rows to process. |
Error |
A text that contains information about an error that occurred. |
Is |
Checks whether the pasted data is valid. |
Original |
Gets the row’s original values. |
Row |
Gets the total count of rows to process, including rows with headers. |
Row |
Gets the pasted row’s handle. |
#Remarks
Refer to the Paste Operations topic to learn more.
Note
The Clipboard
See Also