Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • tk/lib/tk/text.rb

Class/Module Index [+]

Quicksearch

TkTextTagConfig

Public Instance Methods

current_tag_configinfo(tagOrId, slot=nil) click to toggle source
 
               # File tk/lib/tk/text.rb, line 47
def current_tag_configinfo(tagOrId, slot=nil)
  current_itemconfiginfo(['tag', tagOrId], slot)
end
            
current_window_configinfo(tagOrId, slot=nil) click to toggle source
 
               # File tk/lib/tk/text.rb, line 66
def current_window_configinfo(tagOrId, slot=nil)
  current_itemconfiginfo(['window', tagOrId], slot)
end
            
tag_cget(tagOrId, option) click to toggle source
 
               # File tk/lib/tk/text.rb, line 35
def tag_cget(tagOrId, option)
  itemcget(['tag', tagOrId], option)
end
            
tag_cget_strict(tagOrId, option) click to toggle source
 
               # File tk/lib/tk/text.rb, line 38
def tag_cget_strict(tagOrId, option)
  itemcget_strict(['tag', tagOrId], option)
end
            
tag_cget_tkstring(tagOrId, option) click to toggle source
 
               # File tk/lib/tk/text.rb, line 32
def tag_cget_tkstring(tagOrId, option)
  itemcget_tkstring(['tag', tagOrId], option)
end
            
tag_configinfo(tagOrId, slot=nil) click to toggle source
 
               # File tk/lib/tk/text.rb, line 44
def tag_configinfo(tagOrId, slot=nil)
  itemconfiginfo(['tag', tagOrId], slot)
end
            
tag_configure(tagOrId, slot, value=None) click to toggle source
 
               # File tk/lib/tk/text.rb, line 41
def tag_configure(tagOrId, slot, value=None)
  itemconfigure(['tag', tagOrId], slot, value)
end
            
window_cget(tagOrId, option) click to toggle source
 
               # File tk/lib/tk/text.rb, line 54
def window_cget(tagOrId, option)
  itemcget(['window', tagOrId], option)
end
            
window_cget_strict(tagOrId, option) click to toggle source
 
               # File tk/lib/tk/text.rb, line 57
def window_cget_strict(tagOrId, option)
  itemcget_strict(['window', tagOrId], option)
end
            
window_cget_tkstring(tagOrId, option) click to toggle source
 
               # File tk/lib/tk/text.rb, line 51
def window_cget_tkstring(tagOrId, option)
  itemcget_tkstring(['window', tagOrId], option)
end
            
window_configinfo(tagOrId, slot=nil) click to toggle source
 
               # File tk/lib/tk/text.rb, line 63
def window_configinfo(tagOrId, slot=nil)
  itemconfiginfo(['window', tagOrId], slot)
end
            
window_configure(tagOrId, slot, value=None) click to toggle source
 
               # File tk/lib/tk/text.rb, line 60
def window_configure(tagOrId, slot, value=None)
  itemconfigure(['window', tagOrId], slot, value)
end