LVM_MOVEITEMTOGROUP (Windows CE 5.0)

Send Feedback

This message moves an item specified by an index into a group.

To send this message, call the SendMessage function.

lResult = SendMessage(   (HWND) hWndControl,   (UINT) LVM_MOVEITEMTOGROUP,   (WPARAM) wParam,     // = (WPARAM) (int) idItemFrom;   (LPARAM) lParam      // = (LPARAM) (int) idGroupTo;);

Parameters

  • idItemFrom
    Value of type int that contains the index of the item to move.
  • idGroupTo
    Value of type int that specifies the identifier (ID) of the group where the item will move.

Return Values

Returns TRUE if the operation is successful and FALSE otherwise.

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.