CListBox::GetCount
Recupera il numero di elementi in una casella di riepilogo.
int GetCount( ) const;
Valore restituito
Il numero di elementi della casella di riepilogo, o LB_ERR se si verifica un errore.
Note
Il valore restituito è una maggiore del valore di indice dell'ultimo elemento (indice a base zero).
Esempio
// 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);
Requisiti
Header: afxwin.h