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);
}
}
要求
Header: afxwin.h