windowsforms-devexpress-dot-xtraspreadsheet-dot-spreadsheetcontrol-13b83e26.md
Occurs after a user dropped the selected cell range in a new location.
Namespace : DevExpress.XtraSpreadsheet
Assembly : DevExpress.XtraSpreadsheet.v25.2.dll
NuGet Package : DevExpress.Win.Spreadsheet
public event AfterDropRangeEventHandler AfterDropRange
Public Event AfterDropRange As AfterDropRangeEventHandler
The AfterDropRange event's data class is AfterDropRangeEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| OperationType | Gets the type of the drag-and-drop operation a user performed over a cell range. |
| SourceRange | Returns a cell range a user moved or copied to a new location. |
| TargetRange | Returns a cell range into which data was pasted. |
Handle this event to perform any actions after a cell range was dropped in a new location. This event allows you to obtain the source and destination ranges, and determine whether a user moved or copied the source range.
To cancel the drag-and-drop operation for a cell range, handle the SpreadsheetControl.BeforeDropRange event and set its Cancel parameter to true.
See Also