class Iup::Expander

An expandable container for a single widget. The user can show or hide the child widget, as required.

Example

The following places a button in an expandable area, with a blue title:

bt = Iup::Button.new('Button ONE')

exp = Iup::Expander.new(bt) do |e|
  e.title = 'Expander title'
  e.forecolor = '0 0 255'
end