Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
DWORD GetItemData( int nItem ) const;
Return Value
A 32-bit application-specific value associated with the specified item.
Parameters
nItem
Index of the list item whose data is to be retrieved.
Remarks
This function retrieves the 32-bit application-specific value associated with the item specified by nItem. This value is the lParam member of the structure, as described in the Platform SDK
Example
// The pointer to my list view control.
extern CListCtrl* pmyListCtrl;
// If any item's data is equal to zero then reset it to -1.
for (int i=0;i < pmyListCtrl->GetItemCount();i++)
{
if (pmyListCtrl->GetItemData(i) == 0)
{
pmyListCtrl->SetItemData(i, (DWORD) -1);
}
}
CListCtrl Overview | Class Members | Hierarchy Chart
See Also CListCtrl::SetItemData