DropHandlerBase.PerformPostEditActions(DragDropInfo, Boolean) Method

Definition

This method is called after the edits are made to the buffer to perform any necessary post edit actions.

protected:
 abstract void PerformPostEditActions(Microsoft::VisualStudio::Text::Editor::DragDrop::DragDropInfo ^ dragDropInfo, bool successfulEdit);
 abstract void PerformPostEditActions(Microsoft::VisualStudio::Text::Editor::DragDrop::DragDropInfo const & dragDropInfo, bool successfulEdit);
protected abstract void PerformPostEditActions (Microsoft.VisualStudio.Text.Editor.DragDrop.DragDropInfo dragDropInfo, bool successfulEdit);
abstract member PerformPostEditActions : Microsoft.VisualStudio.Text.Editor.DragDrop.DragDropInfo * bool -> unit
Protected MustOverride Sub PerformPostEditActions (dragDropInfo As DragDropInfo, successfulEdit As Boolean)

Parameters

dragDropInfo
DragDropInfo

The DragDropInfo holding information about the currently ongoing drag/drop operation.

successfulEdit
Boolean

If true, the edits performed on the buffer were successful, otherwise, the edits failed.

Applies to