class Iup::ZBox

A container of a list of widgets, but only displays one of them.

Example

The following example stores four widgets and displays the label:

zbox = Iup::ZBox.new(frame, text, label, button) do |b|
  b.alignment = 'acenter'
  b.expand = 'yes'
  b.valuepos = 2
end

Also see: HBox, Tabs, VBox