다음을 통해 공유


CListBox::GetItemDataPtr

지정한 목록 상자 항목에 대 한 포인터와 관련 된 응용 프로그램에서 제공한 32 비트 값을 검색 (void *).

void* GetItemDataPtr(
   int nIndex 
) const;

매개 변수

  • nIndex
    목록 상자에서 항목의 인덱스를 지정합니다.

반환 값

오류가 발생 하는 경우 포인터 또는-1을 검색 합니다.

예제

LPVOID lpmyPtr = pParentWnd;

// Check all the items in the list box; if an item's
// data pointer is equal to my pointer then reset it to NULL.
for (int i=0; i < m_myListBox.GetCount(); i++)
{
   if (m_myListBox.GetItemDataPtr(i) == lpmyPtr)
   {
      m_myListBox.SetItemDataPtr(i, NULL);
   }
}

요구 사항

헤더: afxwin.h

참고 항목

참조

Clistbox 클래스 클래스

계층 구조 차트

CListBox::AddString

CListBox::GetItemData

CListBox::InsertString

CListBox::SetItemData

LB_GETITEMDATA