次の方法で共有


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