CListCtrl::GetEditControl

CEdit*GetEditControl() const;

Return Value

If successful, a pointer to the CEdit object that is used to edit the item text; otherwise NULL.

Remarks

Retrieves the handle of the edit control used to edit a list view item’s text.

Example

// The pointer to my list view control.
extern CListCtrl* pmyListCtrl;
// The string replacing the text in the edit control.
extern LPCTSTR lpszmyString;

// If possible, replace the text in the label edit control.
CEdit* pEdit = pmyListCtrl->GetEditControl();

if (pEdit != NULL)
{
   pEdit->SetWindowText(lpszmyString);
}

CListCtrl OverviewClass MembersHierarchy Chart

See Also   CListCtrl::EditLabel