# File tk/lib/tk/text.rb, line 48 def current_tag_configinfo(tagOrId, slot=nil) current_itemconfiginfo(['tag', tagOrId], slot) end
# File tk/lib/tk/text.rb, line 67 def current_window_configinfo(tagOrId, slot=nil) current_itemconfiginfo(['window', tagOrId], slot) end
# File tk/lib/tk/text.rb, line 36 def tag_cget(tagOrId, option) itemcget(['tag', tagOrId], option) end
# File tk/lib/tk/text.rb, line 39 def tag_cget_strict(tagOrId, option) itemcget_strict(['tag', tagOrId], option) end
# File tk/lib/tk/text.rb, line 33 def tag_cget_tkstring(tagOrId, option) itemcget_tkstring(['tag', tagOrId], option) end
# File tk/lib/tk/text.rb, line 45 def tag_configinfo(tagOrId, slot=nil) itemconfiginfo(['tag', tagOrId], slot) end
# File tk/lib/tk/text.rb, line 42 def tag_configure(tagOrId, slot, value=None) itemconfigure(['tag', tagOrId], slot, value) end
# File tk/lib/tk/text.rb, line 55 def window_cget(tagOrId, option) itemcget(['window', tagOrId], option) end
# File tk/lib/tk/text.rb, line 58 def window_cget_strict(tagOrId, option) itemcget_strict(['window', tagOrId], option) end
# File tk/lib/tk/text.rb, line 52 def window_cget_tkstring(tagOrId, option) itemcget_tkstring(['window', tagOrId], option) 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.