CListCtrl::EnsureVisible
Ensures that a list view item is at least partially visible.
BOOL EnsureVisible(
int nItem,
BOOL bPartialOK
);
Parameters
nItem
Index of the list view item that is to be visible.bPartialOK
Specifies whether partial visibility is acceptable.
Return Value
Nonzero if successful; otherwise zero.
Remarks
The list view control is scrolled if necessary. If the bPartialOK parameter is nonzero, no scrolling occurs if the item is partially visible.
Example
// Ensure that the last item is visible.
int nCount = m_myListCtrl.GetItemCount();
if (nCount > 0)
m_myListCtrl.EnsureVisible(nCount-1, FALSE);
Requirements
Header: afxcmn.h