WS_GROUP top-level constant

int const WS_GROUP

The window is the first control of a group of controls.

The group consists of this first control and all controls defined after it, up to the next control with the WS_GROUP style. The first control in each group usually has the WS_TABSTOP style so that the user can move from group to group. The user can subsequently change the keyboard focus from one control in the group to the next control in the group by using the direction keys.

You can turn this style on and off to change dialog box navigation. To change this style after a window has been created, use the SetWindowLong function.

Implementation

const WS_GROUP = 0x00020000;