Methods
B
C
D
E
F
G
H
I
M
O
R
S
T
Instance Public methods
bbox()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 845
def bbox
  @tree.bbox(self)
end
bind(seq, *args)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 852
def bind(seq, *args)
  @tree.tag_bind(self, seq, *args)
  self
end
bind_append(seq, *args)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 856
def bind_append(seq, *args)
  @tree.tag_bind_append(self, seq, *args)
  self
end
bind_remove(seq)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 860
def bind_remove(seq)
  @tree.tag_bind_remove(self, seq)
  self
end
bindinfo(seq=nil)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 864
def bindinfo(seq=nil)
  @tree.tag_bindinfo(self, seq)
end
button_activate()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 868
def button_activate
  @tree.button_activate(self)
  self
end
button_bind(seq, *args)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 873
def button_bind(seq, *args)
  @tree.button_bind(self, seq, *args)
  self
end
button_bind_append(seq, *args)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 877
def button_bind_append(seq, *args)
  @tree.button_bind_append(self, seq, *args)
  self
end
button_bind_remove(seq)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 881
def button_bind_remove(seq)
  @tree.button_bind_remove(self, seq)
  self
end
button_bindinfo(seq=nil)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 885
def button_bindinfo(seq=nil)
  @tree.button_bindinfo(self, seq)
end
close()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 889
def close
  @tree.close(self)
  self
end
close_recurse()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 893
def close_recurse
  @tree.close_recurse(self)
  self
end
delete()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 898
def delete
  @tree.delete(self)
  self
end
entry_activate()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 903
def entry_activate
  @tree.entry_activate(self)
  self
end
entry_before?(tag)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 913
def entry_before?(tag)
  @tree.entry_before?(self, tag)
end
entry_children(first=None, last=None)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 907
def entry_children(first=None, last=None)
  @tree.entry_children(self, first, last)
end
entry_delete(first=None, last=None)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 910
def entry_delete(first=None, last=None)
  @tree.entry_delete(self, first, last)
end
entry_hidden?()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 916
def entry_hidden?
  @tree.entry_before?(self)
end
entry_open?()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 919
def entry_open?
  @tree.entry_open?(self)
end
entry_size()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 923
def entry_size
  @tree.entry_size(self)
end
entry_size_recurse()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 926
def entry_size_recurse
  @tree.entry_size_recurse(self)
end
focus()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 930
def focus
  @tree.tag_focus(self)
  self
end
get()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 935
def get
  @tree.get(self)
end
get_full()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 938
def get_full
  @tree.get_full(self)
end
hide()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 942
def hide
  @tree.hide(self)
  self
end
index(str)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 947
def index(str)
  @tree.index_at(self, str)
end
index_path(str)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 950
def index_path(str)
  @tree.index_at_path(self, str)
end
insert(pos, parent=nil, keys={})
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 954
def insert(pos, parent=nil, keys={})
  @tree.insert_at(self, pos, parent, keys)
end
move_after(dest)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 962
def move_after(dest)
  @tree.move_after(self, dest)
  self
end
move_before(dest)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 958
def move_before(dest)
  @tree.move_before(self, dest)
  self
end
move_into(dest)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 966
def move_into(dest)
  @tree.move_into(self, dest)
  self
end
open()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 971
def open
  @tree.open(self)
  self
end
open_recurse()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 975
def open_recurse
  @tree.open_recurse(self)
  self
end
range_open_to(tag)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 983
def range_open_to(tag)
  @tree.range(self, tag)
end
range_to(tag)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 980
def range_to(tag)
  @tree.range(self, tag)
end
screen_bbox()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 848
def screen_bbox
  @tree.screen_bbox(self)
end
see()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 987
def see
  @tree.see(self)
  self
end
see_anchor(anchor)
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 991
def see_anchor(anchor)
  @tree.see_anchor(anchor, self)
  self
end
selection_anchor()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 996
def selection_anchor
  @tree.selection_anchor(self)
  self
end
selection_clear()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 1000
def selection_clear
  @tree.selection_clear(self)
  self
end
selection_include?()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 1008
def selection_include?
  @tree.selection_include?(self)
end
selection_mark()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 1004
def selection_mark
  @tree.selection_mark(self)
  self
end
selection_set()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 1011
def selection_set
  @tree.selection_set(self)
  self
end
selection_toggle()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 1015
def selection_toggle
  @tree.selection_toggle(self)
  self
end
show()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 1020
def show
  @tree.show(self)
  self
end
sort_once()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 1025
def sort_once
  @tree.sort_once(self)
  self
end
sort_once_recurse()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 1029
def sort_once_recurse
  @tree.sort_once_recurse(self)
  self
end
toggle()
# File ext/tk/lib/tkextlib/blt/treeview.rb, line 1034
def toggle
  @tree.toggle(self)
  self
end