次の方法で共有


CComboBox::GetCurSel

コンボ ボックスのどの項目が選択されたかを判定するためにこのメンバー関数を呼び出します。

int GetCurSel( ) const;

戻り値

項目が選択されていない場合は、コンボ ボックスのリスト ボックスで現在選択されている項目のインデックス、または CB_ERR

解説

GetCurSel は、リストにインデックスを返します。

使用例

// Select the next item of the currently selected item  
// in the combo box. 
int nIndex = m_pComboBox->GetCurSel();
int nCount = m_pComboBox->GetCount();
if ((nIndex != CB_ERR) && (nCount > 1))
{
   if (++nIndex < nCount)
      m_pComboBox->SetCurSel(nIndex);
   else
      m_pComboBox->SetCurSel(0);
}

必要条件

ヘッダー: afxwin.h

参照

関連項目

CComboBox クラス

階層図

CComboBox::SetCurSel

CB_GETCURSEL