Поделиться через


CListBox::GetItemData

Retrieves the application-supplied doubleword value associated with the specified list-box item.

DWORD_PTR GetItemData(
   int nIndex 
) const;

Параметры

  • nIndex
    Specifies the zero-based index of the item in the list box.

Возвращаемое значение

The 32-bit value associated with the item, or LB_ERR if an error occurs.

Заметки

The doubleword value was the dwItemData parameter of a SetItemData call.

Пример

// If any item's data is equal to zero then reset it to -1.
for (int i=0; i < m_myListBox.GetCount(); i++)
{
   if (m_myListBox.GetItemData(i) == 0)
   {
      m_myListBox.SetItemData(i, (DWORD) -1);
   }
}

Требования

Header: afxwin.h

См. также

Основные понятия

CListBox Class

CListBox Members

Hierarchy Chart

CListBox::AddString

CListBox::GetItemDataPtr

CListBox::SetItemDataPtr

CListBox::InsertString

CListBox::SetItemData

LB_GETITEMDATA