OWLNext    7.0
Borland's Object Windows Library for the modern age
Loading...
Searching...
No Matches
Constructing Group Boxes

In its simplest form, a group box is a labeled static rectangle that visually groups other controls.

TGroupBox has a constructor that takes the seven parameters commonly found in a control object constructor (a parent window, a resource identifier, the control's x, y, h, and w dimensions, and an optional module pointer), and also takes a text string parameter to label the group:

TGroupBox(TWindow *parent, int resourceId,
const char far *text, int X, int Y, int W, int H, TModule *module = 0);

See Also