共用方式為


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