In Files

  • tk/lib/tkextlib/blt/table.rb

Class/Module Index [+]

Quicksearch

Tk::BLT::Table::TableContainer

Public Instance Methods

blt_table_add(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 20
def blt_table_add(*args)
  Tk::BLT::Table.add(self, *args)
  self
end
            
blt_table_arrange() click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 25
def blt_table_arrange()
  Tk::BLT::Table.arrange(self)
  self
end
            
blt_table_cget(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 33
def blt_table_cget(*args)
  Tk::BLT::Table.cget(self, *args)
end
            
blt_table_cget_strict(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 36
def blt_table_cget_strict(*args)
  Tk::BLT::Table.cget_strict(self, *args)
end
            
blt_table_cget_tkstring(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 30
def blt_table_cget_tkstring(*args)
  Tk::BLT::Table.cget_tkstring(self, *args)
end
            
blt_table_configinfo(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 45
def blt_table_configinfo(*args)
  Tk::BLT::Table.configinfo(self, *args)
end
            
blt_table_configure(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 40
def blt_table_configure(*args)
  Tk::BLT::Table.configure(self, *args)
  self
end
            
blt_table_current_configinfo(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 49
def blt_table_current_configinfo(*args)
  Tk::BLT::Table.current_configinfo(self, *args)
end
            
blt_table_current_itemconfiginfo(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 118
def blt_table_current_itemconfiginfo(*args)
  Tk::BLT::Table.current_itemconfiginfo(self, *args)
end
            
blt_table_delete(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 57
def blt_table_delete(*args)
  Tk::BLT::Table.delete(self, *args)
  self
end
            
blt_table_extents(item) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 62
def blt_table_extents(item)
  Tk::BLT::Table.extents(self, item)
end
            
blt_table_insert(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 66
def blt_table_insert(*args)
  Tk::BLT::Table.insert(self, *args)
  self
end
            
blt_table_insert_after(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 76
def blt_table_insert_after(*args)
  Tk::BLT::Table.insert_after(self, *args)
  self
end
            
blt_table_insert_before(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 71
def blt_table_insert_before(*args)
  Tk::BLT::Table.insert_before(self, *args)
  self
end
            
blt_table_itemcget(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 102
def blt_table_itemcget(*args)
  Tk::BLT::Table.itemcget(self, *args)
end
            
blt_table_itemcget_strict(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 105
def blt_table_itemcget_strict(*args)
  Tk::BLT::Table.itemcget_strict(self, *args)
end
            
blt_table_itemcget_tkstring(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 99
def blt_table_itemcget_tkstring(*args)
  Tk::BLT::Table.itemcget_tkstring(self, *args)
end
            
blt_table_itemconfiginfo(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 114
def blt_table_itemconfiginfo(*args)
  Tk::BLT::Table.itemconfiginfo(self, *args)
end
            
blt_table_itemconfigure(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 109
def blt_table_itemconfigure(*args)
  Tk::BLT::Table.itemconfigure(self, *args)
  self
end
            
blt_table_iteminfo(item) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 122
def blt_table_iteminfo(item)
  Tk::BLT::Table.iteminfo(self, item)
end
            
blt_table_join(first, last) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 81
def blt_table_join(first, last)
  Tk::BLT::Table.join(self, first, last)
  self
end
            
blt_table_locate(x, y) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 53
def blt_table_locate(x, y)
  Tk::BLT::Table.locate(self, x, y)
end
            
blt_table_save() click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 86
def blt_table_save()
  Tk::BLT::Table.save(self)
end
            
blt_table_search(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 90
def blt_table_search(*args)
  Tk::BLT::Table.search(self, *args)
end
            
blt_table_split(*args) click to toggle source
 
               # File tk/lib/tkextlib/blt/table.rb, line 94
def blt_table_split(*args)
  Tk::BLT::Table.split(self, *args)
  self
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.