共用方式為


CComboBox::SetItemDataPtr

將 32 位元的值與在下拉式方塊中指定的項目為指定的指標 (void*)。

int SetItemDataPtr( 
   int nIndex, 
   void* pData 
);

參數

  • nIndex
    中以零起始的索引的項目。

  • pData
    包含指標與項目。

傳回值

CB_ERR ,如果發生錯誤。

備註

這個指標仍保持有效在下拉式方塊的存留期內,,即使在下拉式方塊中項目的相對位置可能會變更,以加入或移除項目。 因此,在 方塊內的項目索引,可以變更,但是指標仍保持穩定。

範例

// Set the data pointer of each item to be NULL.
for (int i = 0; i < m_pComboBox->GetCount(); i++)
{
   m_pComboBox->SetItemDataPtr(i, NULL);
}

需求

Header: afxwin.h

請參閱

參考

CComboBox 類別

階層架構圖

CComboBox::DeleteItem

CComboBox::GetItemData

CComboBox::GetItemDataPtr

CComboBox::SetItemData

CB_SETITEMDATA

CComboBox::AddString

CComboBox::InsertString