CTreeCtrl::EditLabel
更新 : 2007 年 11 月
指定されたアイテムのテキストの埋め込み先編集を開始します。
CEdit* EditLabel(
HTREEITEM hItem
);
パラメータ
- hItem
編集されるツリー アイテムのハンドル。
戻り値
正常終了した場合は、アイテム テキストの編集に使用される CEdit オブジェクトへのポインタを返します。それ以外の場合は、NULL を返します。
解説
アイテムのテキストをテキストを保持した単一行のエディット コントロールで置き換えることによって編集します。
使用例
// Make sure the focus is set to the tree control.
m_TreeCtrl.SetFocus();
// Show the edit control on the label of the selected item.
// The tree control must have the TVS_EDITLABELS style set.
HTREEITEM hSel = m_TreeCtrl.GetSelectedItem();
CEdit* pmyEdit = m_TreeCtrl.EditLabel(hSel);
ASSERT(pmyEdit != NULL);
必要条件
ヘッダー : afxcmn.h