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

SpreadsheetControl.AfterDropRange Event

Occurs after a user dropped the selected cell range in a new location.

Namespace: DevExpress.XtraSpreadsheet

Assembly: DevExpress.XtraSpreadsheet.v24.2.dll

NuGet Package: DevExpress.Win.Spreadsheet

#Declaration

public event AfterDropRangeEventHandler AfterDropRange

#Event Data

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.

#Remarks

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