IVsHierarchyDropDataTarget.DragOver 方法

调用,在一个或多个项拖动到目标层次结构或层次结构 " 窗口。

命名空间:  Microsoft.VisualStudio.Shell.Interop
程序集:  Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)

语法

声明
Function DragOver ( _
    grfKeyState As UInteger, _
    itemid As UInteger, _
    <OutAttribute> ByRef pdwEffect As UInteger _
) As Integer
int DragOver(
    uint grfKeyState,
    uint itemid,
    out uint pdwEffect
)

参数

  • grfKeyState
    类型:System.UInt32
    [in] 键盘键和鼠标修饰符按钮的当前状态。有效值如下表所示。使用或运算符,这些值可以按位组合。
    [1|1] 十六进制
    [1|2] 值
    [1|3]“描述”
    [2|1 个] 0x0001
    [2|2] MK_LBUTTON
    [2|3] 鼠标左键单击。
    [3|1 个] 0x0002
    [3|2] MK_RBUTTON
    [3|3] 鼠标右键单击。
    [4|1 个] 0x0004
    [4|2] MK_SHIFT
    [4|3] 移位 按下了键。
    [5|1 个] 0x0008
    [5|2] MK_CONTROL
    [5|3] 控件 按下了键。
    [6|1 个 0x0010]
    [6|2] MK_MBUTTON
    [6|3] 元单击鼠标按钮。
    [7|1 个 0x0020]
    [7|2] MK_ALT
    [7| ALT ] ALT 按下了键。
  • itemid
    类型:System.UInt32
    [in] 该项拖动数据放置目标的项目标识符。有关 itemid 值列表,请参见 VSITEMID。
  • pdwEffect
    类型:System.UInt32%
    [in, out] 在项,对 IVsHierarchy 对象的 pdwEffect 参数的指针的值,标识该层次结构支持的任何效果。在返回, pdwEffect 参数必须包含指示放置操作的结果中的有效标志。有关 pwdEffects 值列表,请参见 DragEnter

返回值

类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。

备注

COM 签名

从 vsshell.idl:

HRESULT IVsHierarchyDropDataTarget::DragOver(
   [in]DWORD grfKeyState,
   [in]VSITEMID itemid,
   [in, out]DWORD * pdwEffect
);

函数通过键盘键和鼠标修饰符按钮的状态 (一个或多个是否按下)。

.NET Framework 安全性

请参见

参考

IVsHierarchyDropDataTarget 接口

Microsoft.VisualStudio.Shell.Interop 命名空间