add_cell(*args)
click to toggle source
def add_cell(*args)
@t.tag_cell(@id, *args)
end
add_col(*args)
click to toggle source
def add_col(*args)
@t.tag_col(@id, *args)
end
add_row(*args)
click to toggle source
def add_row(*args)
@t.tag_row(@id, *args)
end
cget(key)
click to toggle source
def cget(key)
@t.tag_cget(@id, key)
end
cget_strict(key)
click to toggle source
def cget_strict(key)
@t.tag_cget_strict(@id, key)
end
cget_tkstring(key)
click to toggle source
def cget_tkstring(key)
@t.tag_cget_tkstring(@id, key)
end
configinfo(key=nil)
click to toggle source
def configinfo(key=nil)
@t.tag_configinfo(@id, key)
end
current_configinfo(key=nil)
click to toggle source
def current_configinfo(key=nil)
@t.current_tag_configinfo(@id, key)
end
delete()
click to toggle source
destroy()
click to toggle source
def destroy
tk_call(@tpath, 'tag', 'delete', @id)
CellTagID_TBL.mutex.synchronize{
CellTagID_TBL[@tpath].delete(@id) if CellTagID_TBL[@tpath]
}
self
end
exist?()
click to toggle source
def exist?
@t.tag_exist?(@id)
end
id()
click to toggle source
include?(idx)
click to toggle source
def include?(idx)
@t.tag_include?(@id, idx)
end
lower(target=None)
click to toggle source
def lower(target=None)
@t.tag_lower(@id, target)
end
mutex()
click to toggle source
raise(target=None)
click to toggle source
def raise(target=None)
@t.tag_raise(@id, target)
end