CListBox::GetCount
检索项的数目在列表框中。
int GetCount( ) const;
返回值
项的数目在列表框中或 LB_ERR,如果错误。
备注
返回的计数大于最后一项的索引值是一个大于(索引是从零开始)。
示例
// 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);
要求
Header: afxwin.h