CTreeCtrl::GetDropHilightItem
telefonar Esta função para recuperar o item é o destino de uma operação de do tipo arrastar e soltar.
HTREEITEM GetDropHilightItem( ) const;
Valor de retorno
O identificador do item descartado se bem-sucedida; caso contrário, NULO.
Exemplo
// 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);
}
Requisitos
Cabeçalho: afxcmn.h