int GetTopIndex( ) const;
Return Value
The index of the topmost visible item.
Remarks
Retrieves the index of the topmost visible item when in list view or report view.
Example
// The pointer to my list view control.
extern CListCtrl* pmyListCtrl;
// Make sure the focus is set to the list view control.
pmyListCtrl->SetFocus();
// Select all of the items that are completely visible.
int n = pmyListCtrl->GetTopIndex();
int nLast = n + pmyListCtrl->GetCountPerPage();
for (;n < nLast;n++)
{
pmyListCtrl->SetItemState(n, LVIS_SELECTED, LVIS_SELECTED);
ASSERT(pmyListCtrl->GetItemState(n, LVIS_SELECTED) == LVIS_SELECTED);
}
CListCtrl Overview | Class Members | Hierarchy Chart
See Also CListCtrl::GetCountPerPage