CListCtrl::GetEditControl
Retrieves the handle of the edit control used to edit a list view item's text.
CEdit* GetEditControl( ) const;
Return Value
If successful, a pointer to the CEdit object that is used to edit the item text; otherwise NULL.
Example
// 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);
}
Requirements
Header: afxcmn.h