ListView_SetItemCount

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This macro prepares a list-view control for adding a large number of items. You can use this macro or send the LVM_SETITEMCOUNT message explicitly.

Syntax

void ListView_SetItemCount( 
  HWND hwndLV, 
  int cItems 
);

Parameters

  • hwndLV
    Handle to a list-view control.
  • cItems
    Number of items for which the list-view control should allocate memory.

Return Value

None.

Remarks

If the list-view control was created without the LVS_OWNERDATA style, this macro causes the control to allocate its internal data structures for the specified number of items. This prevents the control from having to allocate the data structures every time an item is added.

If the list-view control was created with the LVS_OWNERDATA style (a virtual list view), the ListView_SetItemCountEx macro should be used.

In Windows CE 2.0 and later, if the list-view control is a virtual list view (has the LVS_OWNERDATA style), use the ListView_SetItemCountEx macro instead.

Related message: LVM_SETITEMCOUNT

Requirements

Header commctrl.h
Windows Embedded CE Windows CE 1.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

ListView_SetItemCountEx
LVM_SETITEMCOUNT
List-View Controls Macros