Partager via


CTreeCtrl::GetDropHilightItem

Appelez cette fonction pour extraire l'élément qui est la cible d'une opération de glisser-déplacer.

HTREEITEM GetDropHilightItem( ) const;

Valeur de retour

Le handle de l'élément supprimé si l'opération a réussi ; sinon NULL.

Exemple

// 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);
}

Configuration requise

Header: afxcmn.h

Voir aussi

Référence

CTreeCtrl, classe

Graphique de la hiérarchie

CTreeCtrl::SelectDropTarget