Method: Tk::Iwidgets::Notebook#yscrollbar

Defined in:
lib/tkextlib/iwidgets/notebook.rb

#yscrollbar(bar = nil) ⇒ Object Also known as: scrollbar



137
138
139
140
141
142
143
144
145
146
# File 'lib/tkextlib/iwidgets/notebook.rb', line 137

def yscrollbar(bar=nil)
  if bar
    @scrollbar = bar
    @scrollbar.orient 'vertical'
    self.scrollcommand {|*arg| @scrollbar.set(*arg)}
    @scrollbar.command {|*arg| self.yview(*arg)}
    Tk.update  # avoid scrollbar trouble
  end
  @scrollbar
end