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);
}
}
必要条件
ヘッダー: afxcmn.h