Sdílet prostřednictvím


CTreeCtrl::DeleteItem

Volání této funkce můžete odstranit položky z ovládacího prvku zobrazení stromu.

BOOL DeleteItem( 
   HTREEITEM hItem 
);

Parametry

  • hItem
    Popisovač položku stromu odstranit.Pokud hitemTVI_ROOT hodnotu z ovládacího prvku zobrazení stromu jsou odstraněny všechny položky.

Vrácená hodnota

Nenulová hodnota, pokud je úspěšná. jinak 0.

Příklad

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

Požadavky

Záhlaví: afxcmn.h

Viz také

Referenční dokumentace

Třída CTreeCtrl

Graf hierarchie

CTreeCtrl::DeleteAllItems

CTreeCtrl::InsertItem