DragDropPointerEffects Enumeration
Specifies the effects of a drag/drop operation.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: Microsoft.VisualStudio.Text.Editor.DragDrop
Assembly: Microsoft.VisualStudio.Text.UI.Wpf (in Microsoft.VisualStudio.Text.UI.Wpf.dll)
Syntax
'宣言
<FlagsAttribute> _
Public Enumeration DragDropPointerEffects
[FlagsAttribute]
public enum DragDropPointerEffects
[FlagsAttribute]
public enum class DragDropPointerEffects
[<FlagsAttribute>]
type DragDropPointerEffects
public enum DragDropPointerEffects
Members
Member name | Description | |
---|---|---|
None | The drag/drop operation is not allowed. The mouse icon will be changed to the "not allowed" icon and no tracker will be shown. | |
Copy | The drag/drop operation will result in data copy. The mouse icon will be changed to the copy icon. | |
Link | A shortcut or link will be created as the result of the drag/drop operation. The mouse icon will be changed to the shortcut creation icon. | |
Move | The data will be moved from the drag source to the drop target. The mouse icon will be changed to the move icon. | |
Scroll | The drop operation is causing scrolling in the drop target. | |
Track | A tracker hinting the drop location on the editor will be displayed. | |
All | All possible effects. |
Remarks
This enumeration supports bitwise combination of its member variables.