CListCtrl::SetItemCount

Prepares a list view control for adding a large number of items.

void SetItemCount(
   int nItems 
);

Parameters

  • nItems
    Number of items that the control will ultimately contain.

Remarks

To set the item count for a virtual list view control, see CListCtrl::SetItemCountEx.

Remarks

This member function implements the behavior of the Win32 macro, ListView_SetItemCount, as described in the Windows SDK.

Example

        CString str;

        // Add 1024 items to the list view control.
        m_myListCtrl.SetItemCount(1024);

        for (int i = 0; i < 1024; i++)
        {
            str.Format(TEXT("item %d"), i);
            m_myListCtrl.InsertItem(i, str);
        }

Requirements

Header: afxcmn.h

See Also

Reference

CListCtrl Class

Hierarchy Chart

CListCtrl::GetItemCount

CListCtrl::GetSelectedCount

Other Resources

CListCtrl Members