CListCtrl::GetEditControl
Recupera a alça de controle edit usado para editar o texto de um item de exibição de lista.
CEdit* GetEditControl( ) const;
Valor de retorno
Se com êxito, um ponteiro para o objeto de CEdit que é usado para editar o texto do item; se não NULO.
Exemplo
// 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);
}
Requisitos
Cabeçalho: afxcmn.h