CListBox::GetCount
Pobiera liczbę elementów w polu listy.
int GetCount( ) const;
Wartość zwracana
Liczba elementów w polu listy lub LB_ERR , jeśli wystąpi błąd.
Uwagi
Zwrócona liczba jest większa o jeden od wartości indeksu ostatnim elementem (indeks jest od zera).
Przykład
// 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);
Wymagania
Nagłówek: afxwin.h