CTreeCtrl::DeleteItem
Appelez cette fonction pour supprimer un élément du contrôle arborescence.
BOOL DeleteItem(
HTREEITEM hItem
);
Paramètres
- hItem
Handle de l'élément d'arborescence à supprimer. Si le hitem a la valeur de TVI_ROOT , tous les éléments sont supprimés du contrôle arborescence.
Valeur de retour
Une valeur différente de zéro si l'opération a réussi ; sinon 0.
Exemple
// Look at all of the root-level items
HTREEITEM hCurrent = m_TreeCtrl.GetChildItem(TVI_ROOT);
while (hCurrent != NULL)
{
// Get the text for the item. Notice we use TVIF_TEXT because
// we want to retrieve only the text, but also specify TVIF_HANDLE
// because we're getting the item by its handle.
TVITEM item;
TCHAR szText[1024];
item.hItem = hCurrent;
item.mask = TVIF_TEXT | TVIF_HANDLE;
item.pszText = szText;
item.cchTextMax = 1024;
BOOL bWorked = m_TreeCtrl.GetItem(&item);
// Try to get the next item
hCurrent = m_TreeCtrl.GetNextItem(hCurrent, TVGN_NEXT);
// If we successfuly retrieved an item, and the item's text
// contains a lowercase letter 'e', delete the item.
if (bWorked && _tcschr(item.pszText, 'e'))
m_TreeCtrl.DeleteItem(item.hItem);
}
Configuration requise
Header: afxcmn.h