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
|