CTreeCtrl::EditLabel
指定された項目のテキストの埋め込み先編集を開始するには、この関数を呼び出します。
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