IDropHandler Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Handles drag and drop operations for different data formats.
public interface class IDropHandler
public interface class IDropHandler
__interface IDropHandler
public interface IDropHandler
type IDropHandler = interface
Public Interface IDropHandler
- Derived
Remarks
Any object that implements this interface can act as a drop handler. Drop handlers are created via IDropHandlerProvider. To learn more about data formats and their association with IDropHandlers, please see IDropHandlerProvider.
Methods
HandleDataDropped(DragDropInfo) |
Indicates that the drag and drop operation has completed, and that the final tasks, if any, should be performed now. |
HandleDragCanceled() |
Indicates that a drag and drop operation has been canceled. |
HandleDraggingOver(DragDropInfo) |
Indicates that the drag and drop operation is in progress. |
HandleDragStarted(DragDropInfo) |
Indicates the start of a drag and drop operation. |
IsDropEnabled(DragDropInfo) |
Determines whether the handler can accept data for a drag and drop operation. |