4.3 Horizontal and vertical frames

The FXHorizontalFrame and FXVerticalFrame widgets arrange their children in rows or columns, respectively. For example,

vf = FXVerticalFrame(parent)
FXButton(vf, 'Button 1')
FXButton(vf, 'Button 2')
FXButton(vf, 'Button 3')

Figure 4–1 An example of a vertical frame from FXVerticalFrame.