CTreeCtrl::GetEditControl
Appelez cette fonction pour extraire le handle du contrôle d'édition est utilisé pour modifier le texte d'un élément d'arborescence.
CEdit* GetEditControl( ) const;
Valeur de retour
Pointeur vers le contrôle d'édition utilisé pour modifier le texte de l'élément, si l'opération a réussi ; sinon NULL.
Exemple
// 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);
}
Configuration requise
Header: afxcmn.h