共用方式為


CListBox::GetCount

擷取項目的數量在清單方塊中。

int GetCount( ) const;

傳回值

項目數目在清單方塊中的或 LB_ERR ,如果發生錯誤。

備註

傳回計數大於最後一個項目的索引值大 (索引以零起始)。

範例

// Add 10 items to the list box.
CString str;
for (int i = 0; i < 10; i++)
{
   str.Format(_T("item %d"), i);
   m_myListBox.AddString(str);
}

// Verify that 10 items were added to the list box.
ASSERT(m_myListBox.GetCount() == 10);

需求

Header: afxwin.h

請參閱

參考

CListBox 類別

階層架構圖

LB_GETCOUNT