CComboBox::GetCount
Rufen Sie die Memberfunktion auf, um die Anzahl der Elemente im Listenfeldbereich eines Kombinationsfelds abzurufen.
int GetCount( ) const;
Rückgabewert
Eine -Anzahl von Elementen. Die zurückgegebene Anzahl ist eine, die des letzten Elements größer als der Indexwert ist (der Index ist nullbasiert). Es ist CB_ERR, wenn ein Fehler auftritt.
Beispiel
// 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);
Anforderungen
Header: afxwin.h