Methods
Instance Public methods
next_entry(menu, delta)
Link
Source: show
# File ext/tk/lib/tk/menu.rb, line 410 def next_entry(menu, delta) # delta is increment value of entry index. # For example, +1 denotes 'next entry' and -1 denotes 'previous entry'. Tk.tk_call('::tk::MenuNextEntry', menu, delta) end
These methods calls internal functions of Tcl/Tk. So, They may not work on your Tcl/Tk.
Source: show