共用方式為


CListCtrl::EditLabel

啟動就地編輯項目的文字。

CEdit* EditLabel(
   int nItem 
);

參數

  • nItem
    要編輯的清單檢視項目的索引。

傳回值

如果成功,指標用來編輯項目文字的 CEdit 物件;否則 NULL

備註

具有 LVS_EDITLABELS 視窗樣式的清單檢視控制項可讓使用者就地編輯項目的標籤。 使用者已開始編輯藉由按一下具有焦點項目的標籤 (Label)。

使用這個函式來啟動就地編輯指定的清單檢視項目的文字。

範例

        // Make sure the focus is set to the list view control.
        m_myListCtrl.SetFocus();

        // Show the edit control on the label of the first
        // item in the list view control.
        CEdit* pmyEdit = m_myListCtrl.EditLabel(1);
        ASSERT(pmyEdit != NULL);

需求

Header: afxcmn.h

請參閱

參考

類別 CListCtrl

階層架構圖

CListCtrl::GetEditControl