class Iup::HBox

A container for one or more child widgets, arranged in a horizontal row.

Example

The following example puts a label beside a button:

box = Iup::HBox.new(label, button) do |b|
  b.gap = 10
  b.margin = '5x5'
  b.expand = :yes
end

Also see: Fill, VBox