# File tk/lib/tkextlib/bwidget/dynamichelp.rb, line 30 def self.__cget_cmd ['DynamicHelp::configure'] end
# File tk/lib/tkextlib/bwidget/dynamichelp.rb, line 34 def self.__config_cmd ['DynamicHelp::configure'] end
# File tk/lib/tkextlib/bwidget/dynamichelp.rb, line 21 def self.__pathname 'DynamicHelp::configure' end
# File tk/lib/tkextlib/bwidget/dynamichelp.rb, line 49 def self.add(widget, keys={}) tk_call('DynamicHelp::add', widget, *hash_kv(keys)) end
# File tk/lib/tkextlib/bwidget/dynamichelp.rb, line 45 def self.cget(slot) self.current_configinfo(slot).values[0] end
# File tk/lib/tkextlib/bwidget/dynamichelp.rb, line 38 def self.cget_strict(slot) slot = slot.to_s info = {} self.current_configinfo.each{|k,v| info[k.to_s] = v if k.to_s == slot} fail RuntimeError, "unknown option \"-#{slot}\"" if info.empty? info.values[0] end
# File tk/lib/tkextlib/bwidget/dynamichelp.rb, line 53 def self.delete(widget) tk_call('DynamicHelp::delete', widget) end
Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.
If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.