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);
}

要求

Header: afxwin.h

请参见

参考

CComboBox选件类

层次结构图

CComboBox::SetCurSel

CB_GETCURSEL