LVM_INSERTGROUPSORTED (Windows CE 5.0)

Send Feedback

This message inserts a group into an ordered list of groups.

To send this message, call the SendMessage function.

lResult = SendMessage(   (HWND) hWndControl,   (UINT) LVM_INSERTGROUPSORTED,   (WPARAM) wParam,   // = (WPARAM) (PLVINSERTGROUPSORTED) structInsert;   (LPARAM) lParam    // = (LPARAM) (LPARAM) lParam;);

Parameters

  • structInsert
    Pointer to an LVINSERTGROUPSORTED structure that contains the group to insert.
  • lParam
    Must be NULL.

Return Values

The return value is not used.

Remarks

The ordering of the list is based on the ID of the group. The order is defined by the application-defined ordering function, LVGroupCompare, which is passed in the LVINSERTGROUPSORTED structure by the structInsert parameter.

Requirements

OS Versions: Windows CE 5.0 and later.
Header: Commctrl.h.

See Also

List-View Controls Messages

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.