CListBox::SetItemData
更新 : 2007 年 11 月
リスト ボックスの指定項目に結び付ける 32 ビット値を設定します。
int SetItemData(
int nIndex,
DWORD_PTR dwItemData
);
パラメータ
nIndex
項目を 0 から始まるインデックスで指定します。dwItemData
項目に結び付ける値を指定します。
戻り値
エラーが発生した場合は LB_ERR を返します。
使用例
// Set the data of each item to be equal to its index.
for (int i=0;i < m_myListBox.GetCount();i++)
{
m_myListBox.SetItemData(i, i);
}
必要条件
ヘッダー : afxwin.h