Skip to main content
All docs
V26.1
  • SpreadsheetControl.AfterDropRange Event

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

    Namespace: DevExpress.Xpf.Spreadsheet

    Assembly: DevExpress.Xpf.Spreadsheet.v26.1.dll

    NuGet Package: DevExpress.Wpf.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