CListCtrl::GetTopIndex
更新 : 2007 年 11 月
リスト ビューまたはレポート ビューの一番上に表示されているアイテムのインデックスを取得します。
int GetTopIndex( ) const;
戻り値
一番上に表示されているアイテムのインデックスを返します。
使用例
// Make sure the focus is set to the list view control.
m_myListCtrl.SetFocus();
// Select all of the items that are completely visible.
int n = m_myListCtrl.GetTopIndex();
int nLast = n + m_myListCtrl.GetCountPerPage();
for (; n < nLast; n++)
{
m_myListCtrl.SetItemState(n, LVIS_SELECTED, LVIS_SELECTED);
ASSERT(m_myListCtrl.GetItemState(n, LVIS_SELECTED) == LVIS_SELECTED);
}
必要条件
ヘッダー : afxcmn.h