CTreeCtrl::GetEditControl
更新 : 2007 年 11 月
ツリー ビュー アイテムのテキストを編集するために使われている、エディット コントロールのハンドルを取得します。
CEdit* GetEditControl( ) const;
戻り値
正常終了した場合は、アイテムのテキストを編集するために使われているエディット コントロールへのポインタを返します。それ以外の場合は NULL を返します。
使用例
// The string replacing the text in the edit control.
LPCTSTR lpszmyString = _T("New text!");
// Replace the text in the label edit control, if possible.
CEdit* pEdit = m_TreeCtrl.GetEditControl();
if (pEdit != NULL)
{
pEdit->SetWindowText(lpszmyString);
}
必要条件
ヘッダー : afxcmn.h