2008年(148)
分类: C/C++
2008-04-13 20:18:01
int GetNextItem( int nItem, int nFlags ) const;
Return Value
The index of the next item if successful, or -1 otherwise.
Parameters
nItem
Index of the item to begin the searching with, or -1 to find the first item that matches the specified flags. The specified item itself is excluded from the search.
nFlags
Geometric relation of the requested item to the specified item, and the state of the requested item. The geometric relation can be one of these values:
The state can be zero, or it can be one or more of these values:
If an item does not have all of the specified state flags set, the search continues with the next item.
Remarks
Searches for a list view item that has the specified properties and that bears the specified relationship to a given item.
2.
CListCtrl::SetCheck
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.
CListCtrl Overview | Class Members | Hierarchy Chart
See Also CListCtrl::GetCheck
BOOL GetCheck( int nItem ) const;
Return Value
Nonzero if the item is selected, otherwise 0.
Parameters
nItem
The zero-based index of a list control item.
Remarks
This member function implements the behavior of the Win32 macro, , as described in the Platform SDK.