CTreeCtrl::SetItemData
调用此函数将32位特定的值与该指定的项目。
BOOL SetItemData(
HTREEITEM hItem,
DWORD_PTR dwData
);
参数
hItem
数据将检索项的句柄。dwData
32位特定的值与 hItem指定的项。
返回值
非零,如果成功;否则为0。
示例
CString str;
HTREEITEM hItem;
// Insert 20 items into the tree control making every item's
// data be the handle of the item.
for (int i = 0; i < 20; i++)
{
str.Format(TEXT("item %d"), i);
hItem = m_TreeCtrl.InsertItem(str);
if (hItem != NULL)
{
m_TreeCtrl.SetItemData(hItem, (DWORD_PTR)hItem);
}
}
要求
Header: afxcmn.h