CComboBox::GetCount
呼叫此成員函式以取得項目數目下拉式方塊的清單方塊部分中。
int GetCount( ) const;
傳回值
項目的數目。 傳回計數大於最後一個項目的索引值大 (索引以零起始)。 如果發生錯誤,則為 CB_ERR 。
範例
// Add 10 items to the combo box.
CString strItem;
for (int i = 0; i < 10; i++)
{
strItem.Format(_T("item %d"), i);
m_pComboBox->AddString(strItem);
}
// Verify the 10 items were added to the combo box.
ASSERT(m_pComboBox->GetCount() == 10);
需求
Header: afxwin.h