CComboBox::GetItemDataPtr
更新 : 2007 年 11 月
コンボ ボックス内の指定された項目に割り当てられているアプリケーション指定の 32 ビット値をポインタ (void*) として取得します。
void* GetItemDataPtr(
int nIndex
) const;
パラメータ
- nIndex
コンボ ボックスのリスト ボックス項目を 0 から始まるインデックスで指定します。
戻り値
ポインタを返します。エラーが発生した場合は、-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