class Iup::Separator

A Separator is used within a menu, appears as a horizontal line.

Example

The following shows construction of a typical file menu, with a separating line before the exit item:

file_menu = Iup::Menu.new(
  item_open, item_save, 
  Iup::Separator.new, 
  item_exit)

See also: Menu, MenuItem, SubMenu