Namespace
    
  
  
    
    Methods
    - D
- E
- G
- I
- M
- R
- S
- T
Included Modules
    - TkItemConfigMethod
- Scrollable
Constants
      | TkCommandNames | = | ['ListBox'.freeze].freeze | 
| WidgetClassName | = | 'ListBox'.freeze | 
Instance Public methods
      
        
            
              delete(*args)
            
            Link
          
          
          
            
            
              edit(item, text, *args)
            
            Link
          
          
          
            
            
              exist?(item)
            
            Link
          
          
          
            
            
              get_item(idx)
            
            Link
          
          
          
            
            
              imagebind(context, *args)
            
            Link
          
          
          
            def imagebind(*args)
_bind_for_event_class(Event_for_Items, [path, 'bindImage'], *args)
selfend
# File ext/tk/lib/tkextlib/bwidget/listbox.rb, line 56 def imagebind(context, *args) #if args[0].kind_of?(Proc) || args[0].kind_of?(Method) if TkComm._callback_entry?(args[0]) || !block_given? cmd = args.shift else cmd = Proc.new end _bind_for_event_class(Event_for_Items, [path, 'bindImage'], context, cmd, *args) self end
            
              imagebind_append(context, *args)
            
            Link
          
          
          
            def #imagebind_append(*args)
_bind_append_for_event_class(Event_for_Items, [path, 'bindImage'], *args)
selfend
# File ext/tk/lib/tkextlib/bwidget/listbox.rb, line 72 def imagebind_append(context, *args) #if args[0].kind_of?(Proc) || args[0].kind_of?(Method) if TkComm._callback_entry?(args[0]) || !block_given? cmd = args.shift else cmd = Proc.new end _bind_append_for_event_class(Event_for_Items, [path, 'bindImage'], context, cmd, *args) self end
            
              imagebind_remove(*args)
            
            Link
          
          
          
            
            
              imagebindinfo(*args)
            
            Link
          
          
          
            
            
              index(item)
            
            Link
          
          
          
            
            
              insert(idx, item, keys={})
            
            Link
          
          
          
            
            
              items(first=None, last=None)
            
            Link
          
          
          
            
            
              move(item, idx)
            
            Link
          
          
          
            
            
              reorder(neworder)
            
            Link
          
          
          
            
            
              see(item)
            
            Link
          
          
          
            
            
              selection_add(*args)
            
            Link
          
          
          
            
            
              selection_clear()
            
            Link
          
          
          
            
            
              selection_get(*args)
            
            Link
          
          
          
            
            
              selection_remove(*args)
            
            Link
          
          
          
            
            
              selection_set(*args)
            
            Link
          
          
          
            
            
              tagid(tag)
            
            Link
          
          
          
            
            
              textbind(context, *args)
            
            Link
          
          
          
            def textbind(*args)
_bind_for_event_class(Event_for_Items, [path, 'bindText'], *args)
selfend
# File ext/tk/lib/tkextlib/bwidget/listbox.rb, line 97 def textbind(context, *args) #if args[0].kind_of?(Proc) || args[0].kind_of?(Method) if TkComm._callback_entry?(args[0]) || !block_given? cmd = args.shift else cmd = Proc.new end _bind_for_event_class(Event_for_Items, [path, 'bindText'], context, cmd, *args) self end
            
              textbind_append(context, *args)
            
            Link
          
          
          
            def #textbind_append(*args)
_bind_append_for_event_class(Event_for_Items, [path, 'bindText'], *args)
selfend
# File ext/tk/lib/tkextlib/bwidget/listbox.rb, line 113 def textbind_append(context, *args) #if args[0].kind_of?(Proc) || args[0].kind_of?(Method) if TkComm._callback_entry?(args[0]) || !block_given? cmd = args.shift else cmd = Proc.new end _bind_append_for_event_class(Event_for_Items, [path, 'bindText'], context, cmd, *args) self end
            
              textbind_remove(*args)
            
            Link