class Iup::VBox

A container for one or more child widgets, arranged in a vertical column.

Example

This example arranges three buttons vertically with equal width, and some spacing:

box = Iup::VBox.new(button1, button2, button3) do |b|
  b.gap = 10
  b.margin = '5x5'
  b.expandchildren = :yes
end

Also see: Fill, HBox