Поделиться через


CListCtrl::EnsureVisible

Ensures that a list view item is at least partially visible.

BOOL EnsureVisible(
   int nItem,
   BOOL bPartialOK 
);

Параметры

  • nItem
    Index of the list view item that is to be visible.

  • bPartialOK
    Specifies whether partial visibility is acceptable.

Возвращаемое значение

Nonzero if successful; otherwise zero.

Заметки

The list view control is scrolled if necessary. If the bPartialOK parameter is nonzero, no scrolling occurs if the item is partially visible.

Пример

// Ensure that the last item is visible.
int nCount = m_myListCtrl.GetItemCount();
if (nCount > 0)
   m_myListCtrl.EnsureVisible(nCount-1, FALSE);

Требования

Header: afxcmn.h

См. также

Основные понятия

CListCtrl Class

CListCtrl Members

Hierarchy Chart

CListCtrl::Scroll