CTreeCtrl::SelectDropTarget
Chiamare la funzione per ridisegnare l'elemento nello stile utilizzato per indicare la destinazione dell'operazione di trascinamento.
BOOL SelectDropTarget(
HTREEITEM hItem
);
Parametri
- hItem
Handle di un elemento albero.
Valore restituito
Diverso da zero se ha esito positivo; in caso contrario 0.
Esempio
// 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);
}
Requisiti
Header: afxcmn.h