CComboBox::GetTopIndex
擷取第一個可見的項目之以零起始的索引在下拉式方塊的清單方塊部分中。
int GetTopIndex( ) const;
傳回值
第一個可見的項目之以零起始的索引在下拉式方塊的清單方塊部分中,如果 CB_ERR 成功,則為。
備註
一開始,項目 0 是清單方塊上方,,但是,如果清單方塊捲動,其他項目可能在頂端。
範例
// Want an item in the bottom half to be the first visible item.
int nTop = m_pComboBox->GetCount() / 2;
if (m_pComboBox->GetTopIndex() < nTop)
{
m_pComboBox->SetTopIndex(nTop);
ASSERT(m_pComboBox->GetTopIndex() == nTop);
}
需求
Header: afxwin.h