SpreadsheetControl.AfterDropRange Event
Occurs after a user dropped the selected cell range in a new location.
Namespace: DevExpress.XtraSpreadsheet
Assembly: DevExpress.XtraSpreadsheet.v24.1.dll
NuGet Package: DevExpress.Win.Spreadsheet
Declaration
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.