In Files

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

Class/Module Index [+]

Quicksearch

Tk::BLT::Treeview::TagOrID_Methods

Public Instance Methods

bbox() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 830
def bbox
  @tree.bbox(self)
end
            
bind(seq, *args) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 837
def bind(seq, *args)
  @tree.tag_bind(self, seq, *args)
  self
end
            
bind_append(seq, *args) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 841
def bind_append(seq, *args)
  @tree.tag_bind_append(self, seq, *args)
  self
end
            
bind_remove(seq) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 845
def bind_remove(seq)
  @tree.tag_bind_remove(self, seq)
  self
end
            
bindinfo(seq=nil) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 849
def bindinfo(seq=nil)
  @tree.tag_bindinfo(self, seq)
end
            
button_activate() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 853
def button_activate
  @tree.button_activate(self)
  self
end
            
button_bind(seq, *args) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 858
def button_bind(seq, *args)
  @tree.button_bind(self, seq, *args)
  self
end
            
button_bind_append(seq, *args) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 862
def button_bind_append(seq, *args)
  @tree.button_bind_append(self, seq, *args)
  self
end
            
button_bind_remove(seq) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 866
def button_bind_remove(seq)
  @tree.button_bind_remove(self, seq)
  self
end
            
button_bindinfo(seq=nil) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 870
def button_bindinfo(seq=nil)
  @tree.button_bindinfo(self, seq)
end
            
close() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 874
def close
  @tree.close(self)
  self
end
            
close_recurse() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 878
def close_recurse
  @tree.close_recurse(self)
  self
end
            
delete() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 883
def delete
  @tree.delete(self)
  self
end
            
entry_activate() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 888
def entry_activate
  @tree.entry_activate(self)
  self
end
            
entry_before?(tag) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 898
def entry_before?(tag)
  @tree.entry_before?(self, tag)
end
            
entry_children(first=None, last=None) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 892
def entry_children(first=None, last=None)
  @tree.entry_children(self, first, last)
end
            
entry_delete(first=None, last=None) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 895
def entry_delete(first=None, last=None)
  @tree.entry_delete(self, first, last)
end
            
entry_hidden?() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 901
def entry_hidden?
  @tree.entry_before?(self)
end
            
entry_open?() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 904
def entry_open?
  @tree.entry_open?(self)
end
            
entry_size() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 908
def entry_size
  @tree.entry_size(self)
end
            
entry_size_recurse() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 911
def entry_size_recurse
  @tree.entry_size_recurse(self)
end
            
focus() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 915
def focus
  @tree.tag_focus(self)
  self
end
            
get() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 920
def get
  @tree.get(self)
end
            
get_full() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 923
def get_full
  @tree.get_full(self)
end
            
hide() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 927
def hide
  @tree.hide(self)
  self
end
            
index(str) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 932
def index(str)
  @tree.index_at(self, str)
end
            
index_path(str) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 935
def index_path(str)
  @tree.index_at_path(self, str)
end
            
insert(pos, parent=nil, keys={}) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 939
def insert(pos, parent=nil, keys={})
  @tree.insert_at(self, pos, parent, keys)
end
            
move_after(dest) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 947
def move_after(dest)
  @tree.move_after(self, dest)
  self
end
            
move_before(dest) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 943
def move_before(dest)
  @tree.move_before(self, dest)
  self
end
            
move_into(dest) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 951
def move_into(dest)
  @tree.move_into(self, dest)
  self
end
            
open() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 956
def open
  @tree.open(self)
  self
end
            
open_recurse() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 960
def open_recurse
  @tree.open_recurse(self)
  self
end
            
range_open_to(tag) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 968
def range_open_to(tag)
  @tree.range(self, tag)
end
            
range_to(tag) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 965
def range_to(tag)
  @tree.range(self, tag)
end
            
screen_bbox() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 833
def screen_bbox
  @tree.screen_bbox(self)
end
            
see() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 972
def see
  @tree.see(self)
  self
end
            
see_anchor(anchor) click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 976
def see_anchor(anchor)
  @tree.see_anchor(anchor, self)
  self
end
            
selection_anchor() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 981
def selection_anchor
  @tree.selection_anchor(self)
  self
end
            
selection_clear() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 985
def selection_clear
  @tree.selection_clear(self)
  self
end
            
selection_include?() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 993
def selection_include?
  @tree.selection_include?(self)
end
            
selection_mark() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 989
def selection_mark
  @tree.selection_mark(self)
  self
end
            
selection_set() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 996
def selection_set
  @tree.selection_set(self)
  self
end
            
selection_toggle() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 1000
def selection_toggle
  @tree.selection_toggle(self)
  self
end
            
show() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 1005
def show
  @tree.show(self)
  self
end
            
sort_once() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 1010
def sort_once
  @tree.sort_once(self)
  self
end
            
sort_once_recurse() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 1014
def sort_once_recurse
  @tree.sort_once_recurse(self)
  self
end
            
toggle() click to toggle source
 
               # File tk/lib/tkextlib/blt/treeview.rb, line 1019
def toggle
  @tree.toggle(self)
  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.

blog comments powered by Disqus