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)
Public Class Methods
Source
# File lib/wrapped/separator.rb, line 20 def initialize @handle = IupLib.IupSeparator end
Creates a new instance.