CTreeCtrl::GetNextSiblingItem
Wywołanie tej funkcji, aby pobrać następny równorzędny z hItem.
HTREEITEM GetNextSiblingItem(
HTREEITEM hItem
) const;
Parametry
- hItem
Uchwyt elementu drzewa.
Wartość zwracana
Uchwyt następny element równorzędny; w przeciwnym razie NULL.
Przykład
HTREEITEM hmyItem = m_TreeCtrl.GetSelectedItem();
// Show all of the children of hmyItem in bold.
if (m_TreeCtrl.ItemHasChildren(hmyItem))
{
HTREEITEM hItem = m_TreeCtrl.GetChildItem(hmyItem);
while (hItem != NULL)
{
m_TreeCtrl.SetItemState(hItem, TVIS_BOLD, TVIS_BOLD);
hItem = m_TreeCtrl.GetNextSiblingItem(hItem);
}
}
Wymagania
Nagłówek: afxcmn.h