CTreeCtrl::GetNextSiblingItem
调用该函数检索 hItem的下一个同级。
HTREEITEM GetNextSiblingItem(
HTREEITEM hItem
) const;
参数
- hItem
树项的句柄。
返回值
下一个同级项的句柄;否则 NULL。
示例
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);
}
}
要求
Header: afxcmn.h