DragDropInfo::AllowedEffects Property

 

Gets the drag and drop effects allowed by the source.

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

public:
property DragDropEffects AllowedEffects {
	[CompilerGeneratedAttribute]
	DragDropEffects get();
	[CompilerGeneratedAttribute]
	private: void set(DragDropEffects value);
}

Property Value

Type: System.Windows::DragDropEffects

The DragDropEffects allowed by the source.

As part of the contract between the source and the target, the target must honor the effects allowed by the source. For example, if the source does not permit a Move, then the target should not execute a move.

Return to top
Show: