Click or drag to resize

DragDropTargetEventType Enumeration

Defines a drag and drop event type.

Namespace:  callback.ShellBoost.Core
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public enum DragDropTargetEventType
Members
  Member nameValueDescription
DragEnter0 Occurs when an object is dragged into the target's bounds.
DragOver1 Occurs when an object is dragged over the target's bounds.
DragLeave2 Occurs when an object is dragged out of the target's bounds.
DragDrop3 Occurs when a drag and drop operation is completed.
Prepare4 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.
Begin5 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