CComboBox::GetCount
调用该成员函数检索的项数。组合框的列表框部分。
int GetCount( ) const;
返回值
项数。 返回的计数大于最后一项的索引值是一个大于(索引是从零开始)。 如果出错,它是 CB_ERR。
示例
// 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);
要求
Header: afxwin.h