Skip to main content
A newer version of this page is available. .

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.v19.1.dll

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