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