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 (=nil) if = .orient 'vertical' self.scrollcommand {|*arg| .set(*arg)} .command {|*arg| self.yview(*arg)} Tk.update # avoid scrollbar trouble end end |