XUL Programmer's Reference Manual

<tabbox>

Attributes Common Children
align <tab>
class  
id  
flex  
orient  
autostretch  
oncommand  

Like the <tabcontrol> parent element, <tabbox> inherits directly from box, so it also can use all of the positioning and styling attributes defined for that element. The tabbox element is the box widget that contains the actual tabs. Its direct children are most often <tab> elements:
 

 
 
<tabcontrol align="vertical"> 
  <tabbox align="horizontal"> 
        <tab value="Tab One" /> 
        <tab value="Tab Two" /> 
        <tab value="Tab Three" /> 
  </tabbox>                            
</tabcontrol> 
Note that the alignment of the tabbox is most often horizontal, though this doesn't have to be the case.
 


Last updated: 3/27/00 Ian Oeschger