다음을 통해 공유


CListBox::GetCurSel

있는 경우 단일 선택 목록 상자에서 현재 선택된 된 항목의 인덱스를 검색 합니다.

int GetCurSel( ) const;

반환 값

단일 선택 목록 상자를 경우 현재 선택된 된 항목의 인덱스입니다.이 LB_ERR 항목이 현재 선택 되어 있는 경우.

다중 선택 목록 상자에서 포커스를 갖는 항목의 인덱스입니다.

설명

호출 하지 않습니다 GetCurSel 에 대 한 다중 선택 목록 상자.대신 CListBox::GetSelItems를 사용하십시오.

예제

// Select the next item of the currently selected one.
int nIndex = m_myListBox.GetCurSel();
int nCount = m_myListBox.GetCount();
if ((nIndex != LB_ERR) && (nCount > 1))
{
   if (++nIndex < nCount)
      m_myListBox.SetCurSel(nIndex);
   else
      m_myListBox.SetCurSel(0);
}

요구 사항

헤더: afxwin.h

참고 항목

참조

Clistbox 클래스 클래스

계층 구조 차트

LB_GETCURSEL

CListBox::SetCurSel

CListBox::GetSelItems