DropHandlerBase::HandleDragStarted Method (DragDropInfo^)

 

Indicates the start of a drag and drop operation.

Namespace:   Microsoft.VisualStudio.Text.Editor.DragDrop
Assembly:  Microsoft.VisualStudio.Text.UI.Wpf (in Microsoft.VisualStudio.Text.UI.Wpf.dll)

public:
virtual DragDropPointerEffects HandleDragStarted(
	DragDropInfo^ dragDropInfo
)

Parameters

dragDropInfo
Type: Microsoft.VisualStudio.Text.Editor.DragDrop::DragDropInfo^

Information about the drag and drop operation in progress.

This method is called once a drop operation is in progress and the IDropHandler is the handler for the data format of the drop operation. It is not called for drop operations on the data formats that are not supported by this IDropHandler. A call to HandleDragStarted is always followed by a call to either HandleDragCanceled or HandleDataDropped.

Return to top
Show: