Class: Tk::BWidget::ScrollableFrame (Ruby 2.3.4)

In Files

  • tk/lib/tkextlib/bwidget/scrollableframe.rb

Parent

Methods

Included Modules

Class/Module Index [+]

Quicksearch

Tk::BWidget::ScrollableFrame

Public Instance Methods

get_frame(&b)
 
               # File tk/lib/tkextlib/bwidget/scrollableframe.rb, line 25
def get_frame(&b)
  win = window(tk_send_without_enc('getframe'))
  if b
    if TkCore::WITH_RUBY_VM  ### Ruby 1.9 !!!!
      win.instance_exec(self, &b)
    else
      win.instance_eval(&b)
    end
  end
  win
end
            
see(win, vert=None, horiz=None)
 
               # File tk/lib/tkextlib/bwidget/scrollableframe.rb, line 37
def see(win, vert=None, horiz=None)
  tk_send_without_enc('see', win, vert, horiz)
  self
end