次の方法で共有


CTreeCtrl::GetEditControl

ツリー ビュー アイテムのテキストを編集するために使用されるエディット コントロールのハンドルを取得するには、この関数を呼び出します。

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

参照

関連項目

CTreeCtrl クラス

階層図

CTreeCtrl::EditLabel