Methods
    - A
- C
- D
- F
- H
- I
- R
- S
- T
Included Modules
    
  
  
    
    
    
      
      Constants
      | TkCommandNames | = | ['::iwidgets::panedwindow'.freeze].freeze | 
| WidgetClassName | = | 'Panedwindow'.freeze | 
Instance Public methods
      
        
            
              add(tag=nil, keys={})
            
            Link
          
          
          
            # File ext/tk/lib/tkextlib/iwidgets/panedwindow.rb, line 61 def add(tag=nil, keys={}) if tag.kind_of?(Hash) keys = tag tag = nil end if tag tag = Tk::Itk::Component.new(self, tagid(tag)) else tag = Tk::Itk::Component.new(self) end window(tk_call(@path, 'add', tagid(tag), *hash_kv(keys))) tag end
            
              child_site(idx)
            
            Link
          
          
          
            
            
              child_site_list()
            
            Link
          
          
          
            
            
              delete(idx)
            
            Link
          
          
          
            
            
              fraction(*percentages)
            
            Link
          
          
          
            
            
              hide(idx)
            
            Link
          
          
          
            
            
              index(idx)
            
            Link
          
          
          
            
            
              insert(idx, tag=nil, keys={})
            
            Link
          
          
          
            # File ext/tk/lib/tkextlib/iwidgets/panedwindow.rb, line 102 def insert(idx, tag=nil, keys={}) if tag.kind_of?(Hash) keys = tag tag = nil end if tag tag = Tk::Itk::Component.new(self, tagid(tag)) else tag = Tk::Itk::Component.new(self) end window(tk_call(@path, 'insert', index(idx), tagid(tag), *hash_kv(keys))) tag end
            
              invoke(idx=nil)
            
            Link
          
          
          
            
            
              reset()
            
            Link
          
          
          
            
            
              show(idx)
            
            Link