Share via


ListView_EnableGroupView (Compact 2013)

3/28/2014

This macro determines whether the items in a list-view control display as a group. You can use this macro or send the LVM_ENABLEGROUPVIEW message explicitly.

Syntax

int ListView_EnableGroupView(
   HWND hwnd,
   BOOL fEnable
);

Parameters

  • hwnd
    Handle to the list-view control.
  • fEnable
    BOOL that indicates whether to enable a list-view control to group displayed items. Use TRUE to enable grouping, FALSE to disable it.

Return Value

Returns one of the following values.

Value

Description

0

The ability to display list-view items as a group is already enabled or disabled.

1

The state of the control was successfully changed.

-1

The operation failed.

Remarks

None.

Requirements

Header

commctrl.h

See Also

Reference

List-View Controls Macros