In Files

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

Class/Module Index [+]

Quicksearch

Tk::Iwidgets::Scrolledframe

Public Instance Methods

child_site() click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/scrolledframe.rb, line 21
def child_site
  window(tk_call(@path, 'childsite'))
end
            
justify(dir) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/scrolledframe.rb, line 25
def justify(dir)
  tk_call(@path, 'justify', dir)
  self
end
            
xview(*index) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/scrolledframe.rb, line 30
def xview(*index)
  if index.size == 0
    list(tk_send_without_enc('xview'))
  else
    tk_send_without_enc('xview', *index)
    self
  end
end
            
xview_moveto(*index) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/scrolledframe.rb, line 38
def xview_moveto(*index)
  xview('moveto', *index)
end
            
xview_scroll(*index) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/scrolledframe.rb, line 41
def xview_scroll(*index)
  xview('scroll', *index)
end
            
yview(*index) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/scrolledframe.rb, line 45
def yview(*index)
  if index.size == 0
    list(tk_send_without_enc('yview'))
  else
    tk_send_without_enc('yview', *index)
    self
  end
end
            
yview_moveto(*index) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/scrolledframe.rb, line 53
def yview_moveto(*index)
  yview('moveto', *index)
end
            
yview_scroll(*index) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/scrolledframe.rb, line 56
def yview_scroll(*index)
  yview('scroll', *index)
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.

blog comments powered by Disqus