Method: Tk::BWidget::ComboBox#get_listbox
- Defined in:
- lib/tkextlib/bwidget/combobox.rb
#get_listbox(&b) ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/tkextlib/bwidget/combobox.rb', line 32 def get_listbox(&b) win = window(tk_send_without_enc('getlistbox')) if b if TkCore::WITH_RUBY_VM ### Ruby 1.9 !!!! win.instance_exec(self, &b) else win.instance_eval(&b) end end win end |