CTreeCtrl::GetDropHilightItem

调用该函数检索是拖放操作的目标的项目。

HTREEITEM GetDropHilightItem( ) const;

返回值

删除的项目中处理,如果成功;否则 NULL

示例

// Set the item at the point myPoint as the drop target.
UINT uFlags;
HTREEITEM hItem = m_TreeCtrl.HitTest(myPoint, &uFlags);

if ((hItem != NULL) && (TVHT_ONITEM & uFlags))
{
   m_TreeCtrl.SelectDropTarget(hItem);
   ASSERT(m_TreeCtrl.GetDropHilightItem() == hItem);
}

要求

Header: afxcmn.h

请参见

参考

CTreeCtrl选件类

层次结构图

CTreeCtrl::SelectDropTarget