BOOL SetCheck( int nItem, BOOL fCheck = TRUE );
Return Value
Nonzero if the item is checked, otherwise 0.
Parameters
nItem
The zero-based index of a list control item.
fCheck
Specifies whether the state image of the item should be visible or not. By default, fCheck is TRUE and the state image is visible. If fCheck is FALSE, it is not visible.
Remarks
This member function determines if the state image of a list control item is visible or not.
Example
// The pointer to my list view control.
extern CListCtrl* pmyListCtrl;
int nCount = pmyListCtrl->GetItemCount();
BOOL fCheck = FALSE;
// Set the check state of every other item to TRUE and
// all others to FALSE.
for (int i=0;i < nCount;i++)
{
pmyListCtrl->SetCheck(i, fCheck);
ASSERT((pmyListCtrl->GetCheck(i) && fCheck) ||
(!pmyListCtrl->GetCheck(i) && !fCheck));
fCheck = !fCheck;
}
CListCtrl Overview | Class Members | Hierarchy Chart
See Also CListCtrl::GetCheck