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

RepositoryItem.QueryContinueDrag Event

Fires when dragging the editor’s data allowing you to specify whether dragging should be continued.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DXCategory("Events")]
public event QueryContinueDragEventHandler QueryContinueDrag

#Event Data

The QueryContinueDrag event's data class is QueryContinueDragEventArgs. The following properties provide information specific to this event:

Property Description
Action Gets or sets the status of a drag-and-drop operation.
EscapePressed Gets whether the user pressed the ESC key.
KeyState Gets the current state of the SHIFT, CTRL, and ALT keys.

#Remarks

After the dragging process has begun, the QueryContinueDrag event is raised repeatedly by the .NET Framework until the drag operation is either canceled or completed. The event parameters allow you to determine which keys have been pressed and specify whether dragging should be continued.

See Also