CListCtrl::GetEditControl
Récupère le handle du contrôle d'édition utilisé pour modifier le texte d'un élément de l'affichage de liste.
CEdit* GetEditControl( ) const;
Valeur de retour
En cas de réussite, un pointeur vers l'objet de CEdit utilisé pour modifier le texte de l'élément ; sinon NULL.
Exemple
// The string replacing the text in the edit control.
LPCTSTR lpszmyString = _T("custom label!");
// If possible, replace the text in the label edit control.
CEdit* pEdit = m_myListCtrl.GetEditControl();
if (pEdit != NULL)
{
pEdit->SetWindowText(lpszmyString);
}
Configuration requise
Header: afxcmn.h