Method: Tk::BLT::Treeview::ConfigMethod#entry_cget_strict

Defined in:
ext/lib/tkextlib/blt/treeview.rb

#entry_cget_strict(option) ⇒ Object



138
139
140
141
142
143
144
145
# File 'ext/lib/tkextlib/blt/treeview.rb', line 138

def entry_cget_strict(option)
  ret = itemcget_strict('entry', option)
  if option == 'bindtags' || option == :bindtags
    ret.collect{|tag| TkBindTag.id2obj(tag)}
  else
    ret
  end
end