CComboBox::GetCount
コンボ ボックスのリスト ボックス部分の項目数を取得するには、このメンバー関数を呼び出します。
int GetCount( ) const;
戻り値
項目の数。返された計算は最後の項目のインデックス値よりも 1 大きい数値になります (インデックスの値は)。エラーが発生した場合は 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);
必要条件
ヘッダー: afxwin.h