CListBox::GetCount
목록 상자에서 항목을 검색합니다.
int GetCount( ) const;
반환 값
목록 상자에서 항목 개수 또는 LB_ERR 오류가 발생 합니다.
설명
반환 된 횟수 (인덱스는 0부터 시작)에서 마지막 항목의 인덱스 값 보다 큰 하나입니다.
예제
// 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);
요구 사항
헤더: afxwin.h