Skip to main content
All docs
V25.1
  • DragGridEventArgs.Action Property

    Gets or sets an action that should be executed on the dragged data elements (Copy, Move, and so on).

    Namespace: DevExpress.XtraGrid.Views.Grid

    Assembly: DevExpress.XtraGrid.v25.1.dll

    NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

    Declaration

    public DragDropActions Action { get; set; }

    Property Value

    Type Description
    DragDropActions

    A value that specifies an action that should be executed on the dragged data elements.

    Available values:

    Name Description
    All

    The combination of the Copy, Move, and Scroll actions.

    The data from the source control is linked to the target control.

    Copy

    The data from the source control is copied to the target control.

    Move

    The data from the source control is moved to the target control.

    Scroll

    The target control is scrolled while dragging a node to a position that is not currently visible in the target control.

    None

    The target control does not accept data.

    The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Action property.

    Note

    The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

    See Also