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);
需求
Header: afxcmn.h