CListBox::GetTopIndex

检索第一个可见项的从零开始的索引在列表框中。

int GetTopIndex( ) const;

返回值

第一个可见项的从零开始的索引在列表框中,如果成功,LB_ERR 否则为。

备注

最初,项目0是在列表框的顶部,但是,如果列表框移动,另一个项目可以在顶部。

示例

// Want an item in the bottom half to be the first visible item.
int n = m_myListBox.GetCount()/2;
if (m_myListBox.GetTopIndex() < n)
{
   m_myListBox.SetTopIndex(n);
   ASSERT(m_myListBox.GetTopIndex() == n);
}

要求

Header: afxwin.h

请参见

参考

CListBox选件类

层次结构图

CListBox::SetTopIndex

LB_GETTOPINDEX