Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • tk/lib/tkextlib/iwidgets/hyperhelp.rb

Class/Module Index [+]

Quicksearch

Tk::Iwidgets::Hyperhelp

Public Instance Methods

back() click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/hyperhelp.rb, line 46
def back
  tk_call(@path, 'back')
  self
end
            
forward() click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/hyperhelp.rb, line 41
def forward
  tk_call(@path, 'forward')
  self
end
            
show_topic(topic) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/hyperhelp.rb, line 31
def show_topic(topic)
  tk_call(@path, 'showtopic', topic)
  self
end