다음을 통해 공유


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);
        }

요구 사항

헤더: afxcmn.h

참고 항목

참조

CListCtrl 클래스

계층 구조 차트

CListCtrl::EditLabel