CTreeCtrl::GetPrevSiblingItem

更新 : 2007 年 11 月

hItem の前の兄弟アイテムを取得します。

HTREEITEM GetPrevSiblingItem(
   HTREEITEM hItem 
) const;

パラメータ

  • hItem
    ツリー アイテムのハンドル。

戻り値

正常終了した場合は、前の兄弟アイテムのハンドルを返します。それ以外の場合は NULL を返します。

使用例

HTREEITEM hmyItem = m_TreeCtrl.GetSelectedItem();

// Show all of the previous siblings of hmyItem in bold.
HTREEITEM hItem = hmyItem;

while (hItem != NULL)
{
   m_TreeCtrl.SetItemState(hItem, TVIS_BOLD, TVIS_BOLD);
   hItem = m_TreeCtrl.GetPrevSiblingItem(hItem);
}

必要条件

ヘッダー : afxcmn.h

参照

参照

CTreeCtrl クラス

階層図

CTreeCtrl::GetNextSiblingItem

CTreeCtrl::GetParentItem

CTreeCtrl::GetChildItem

その他の技術情報

CTreeCtrl のメンバ