Share via


CListBox::SetTopIndex

intSetTopIndex(intnIndex**);**

Return Value

Zero if successful, or LB_ERR if an error occurs.

Parameters

nIndex

Specifies the zero-based index of the list-box item.

Remarks

Ensures that a particular list-box item is visible.

The system scrolls the list box until either the item specified by nIndex appears at the top of the list box or the maximum scroll range has been reached.

Example

// The pointer to my list box.
extern CListBox* pmyListBox;

// Set the first visible item in the list box to be the middle item
pmyListBox->SetTopIndex(pmyListBox->GetCount()/2);

CListBox OverviewClass MembersHierarchy Chart

See Also   CListBox::GetTopIndex,