CComboBox::GetItemDataPtr
擷取由應用程式所提供的 32 位元值與指定的下拉式方塊項目為指標 (void*)。
void* GetItemDataPtr(
int nIndex
) const;
參數
- nIndex
在下拉式方塊的清單方塊中項目之以零起始的索引。
傳回值
如果發生錯誤,擷取指標則為– 1。
範例
LPVOID lpmyPtr = m_pComboBox->GetItemDataPtr(5);
// Check all the items in the combo box; if an item's
// data pointer is equal to my pointer then reset it to NULL.
for (int i = 0; i < m_pComboBox->GetCount(); i++)
{
if (m_pComboBox->GetItemDataPtr(i) == lpmyPtr)
{
m_pComboBox->SetItemDataPtr(i, NULL);
}
}
需求
Header: afxwin.h