DragDropTargetEventType Enumeration |
Defines a drag and drop event type.
Namespace:
ShellBoost.Core
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax public enum DragDropTargetEventType
Members
| Member name | Value | Description |
---|
| DragEnter | 0 |
Occurs when an object is dragged into the target's bounds.
|
| DragOver | 1 |
Occurs when an object is dragged over the target's bounds.
|
| DragLeave | 2 |
Occurs when an object is dragged out of the target's bounds.
|
| DragDrop | 3 |
Occurs when a drag and drop operation is completed.
|
| Prepare | 4 |
Occurs when a drag and drop operation is being prepared, result of the Shell view SFVM_DIDDRAGDROP callback message.
This is only sent when dragging from the Shell view, not the Explorer's tree view.
This is a callback event.
|
| Begin | 5 |
Occurs when a drag and drop operation begins, result of a Shell view callback message.
This is only sent when dragging from the Shell view, not the Explorer's tree view.
This is a callback event.
|
See Also