CListCtrl::GetEditControl
擷取用來編輯控制項的控制代碼編輯清單檢視項目的文字。
CEdit* GetEditControl( ) const;
傳回值
如果成功,指標用來編輯項目文字的 CEdit 物件;否則 NULL。
範例
// 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);
}
需求
Header: afxcmn.h