Extended maintenance of Ruby versions 1.8.7 and 1.9.2 ended on July 31, 2014. Read more
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 63
def __item_cget_cmd(mixed_id)
[self.path, mixed_id[0] + 'cget', _to_idx(mixed_id[1])]
end
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 66
def __item_config_cmd(mixed_id)
[self.path, mixed_id[0] + 'configure', _to_idx(mixed_id[1])]
end
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 70
def cell_cget(tagOrId, option)
itemcget(['cell', tagOrId], option)
end
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 73
def cell_cget_strict(tagOrId, option)
itemcget_strict(['cell', tagOrId], option)
end
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 79
def cell_configinfo(tagOrId, slot=nil)
itemconfiginfo(['cell', tagOrId], slot)
end
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 76
def cell_configure(tagOrId, slot, value=None)
itemconfigure(['cell', tagOrId], slot, value)
end
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 91
def column_cget(tagOrId, option)
itemcget(['column', tagOrId], option)
end
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 94
def column_cget_strict(tagOrId, option)
itemcget_strict(['column', tagOrId], option)
end
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 100
def column_configinfo(tagOrId, slot=nil)
itemconfiginfo(['column', tagOrId], slot)
end
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 97
def column_configure(tagOrId, slot, value=None)
itemconfigure(['column', tagOrId], slot, value)
end
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 82
def current_cell_configinfo(tagOrId, slot=nil)
current_itemconfiginfo(['cell', tagOrId], slot)
end
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 103
def current_column_configinfo(tagOrId, slot=nil)
current_itemconfiginfo(['column', tagOrId], slot)
end
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 124
def current_row_configinfo(tagOrId, slot=nil)
current_itemconfiginfo(['row', tagOrId], slot)
end
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 112
def row_cget(tagOrId, option)
itemcget(['row', tagOrId], option)
end
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 115
def row_cget_strict(tagOrId, option)
itemcget_strict(['row', tagOrId], option)
end
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 121
def row_configinfo(tagOrId, slot=nil)
itemconfiginfo(['row', tagOrId], slot)
end
# File tk/lib/tkextlib/tcllib/tablelist_core.rb, line 118
def row_configure(tagOrId, slot, value=None)
itemconfigure(['row', tagOrId], slot, value)
end