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