共用方式為


CListCtrl::FindItem

搜尋指定特性的清單檢視項目。

int FindItem( 
   LVFINDINFO* pFindInfo, 
   int nStart = -1  
) const;

參數

  • pFindInfo
    其包含有關此項目的 LVFINDINFO 結構指標資訊將會搜尋。

  • nStart
    開始搜尋之項目的索引以或從-1 開始。 如果 nStart 不等於-1,在 nStart 項目從搜尋作業中排除。

傳回值

索引項目,如果成功或-1 則為。

備註

LVFINDINFO 結構的 pFindInfo 參數指向,含有用來搜尋資訊清單檢視項目。

範例

     LVFINDINFO info;
        int nIndex;

        info.flags = LVFI_PARTIAL|LVFI_STRING;
        info.psz = _T("item");

        // Delete all of the items that begin with the string. 
        while ((nIndex = m_myListCtrl.FindItem(&info)) != -1)
        {
            m_myListCtrl.DeleteItem(nIndex);
        }

需求

Header: afxcmn.h

請參閱

參考

CListCtrl 類別

階層架構圖表

CListCtrl::SortItems