CListBox::GetItemDataPtr
指定されたリスト ボックスの項目に関連付けられたポインター (void*) としてアプリケーションに用意された 32 ビット値を取得します。
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