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
Declaration
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