Methods
- C
- T
- W
Included Modules
Instance Public methods
current_tag_configinfo(tagOrId, slot=nil)
Link
current_window_configinfo(tagOrId, slot=nil)
Link
tag_cget(tagOrId, option)
Link
tag_cget_strict(tagOrId, option)
Link
tag_cget_tkstring(tagOrId, option)
Link
tag_configinfo(tagOrId, slot=nil)
Link
tag_configure(tagOrId, slot, value=None)
Link
window_cget(tagOrId, option)
Link
window_cget_strict(tagOrId, option)
Link
window_cget_tkstring(tagOrId, option)
Link
window_configinfo(tagOrId, slot=nil)
Link
window_configure(tagOrId, slot, value=None)
Link
# File ext/tk/lib/tkextlib/tktable/tktable.rb, line 105 def window_configure(tagOrId, slot, value=None) if slot == :window || slot == 'window' value = _epath(value) elsif slot.kind_of?(Hash) if slot.key?(:window) || slot.key?('window') slot = _symbolkey2str(slot) slot['window'] = _epath(slot['window']) end end itemconfigure(['window', tagid(tagOrId)], slot, value) end