The list of all available tabs.

Parent Elements

This element can appear as a child of the following elements.

ElementDescriptionVersion IntroducedPro Version Introduced
<Control>The root element for the SRP Ribbon Control.1.03.2

Child Elements

The following elements can be children of this one.

ElementDescriptionAppearsVersion IntroducedPro Version Introduced
<Tab>A single tab that contains groups.Zero or once1.03.2

Attributes

No Attributes.

Remarks

The Tabs element defines all the tabs in the ribbon. There is always a default "tab" (that you do not have to define here) referred to as the system button, though it might not always appear like a tab. The system button is equivalent to the File menu. Any other tabs added to this element are like the rest of the top level menus in OI's standard menu bar. See the <Tab> element for more details.

Example

<Tabs>
 
  <Tab Key="HOME" Caption="Home" KeyboardTip="H">
    ...
 </Tab>
 
  <Tab Key="INSERT" Caption="Insert" KeyboardTip="N">
    ...
  </Tab>
 
  <Tab Key="DESIGN" Caption="Design" KeyboardTip="D">
    ...
  </Tab>
 
  <Tab Key="PAGELAYOUT" Caption="Page Layout" KeyboardTip="P">
    ...
  </Tab>
 
  <Tab Key="REFERENCES" Caption="References" KeyboardTip="R">
    ...
  </Tab>
 
  <Tab Key="MAILINGS" Caption="Mailings" KeyboardTip="M">
    ...
  </Tab>
 
  <Tab Key="REVIEW" Caption="Review" KeyboardTip="E">
    ...
  </Tab>
 
  <Tab Key="VIEW" Caption="View" KeyboardTip="V">
    ...
  </Tab>
 
  <Tab Key="DESIGN" Caption="Design" ContextColor="Yellow" ContextCaption="Table Tools">
    ...
  </Tab>
 
  <Tab Key="LAYOUT" Caption="Layout" ContextColor="Yellow" ContextCaption="Table Tools" Visible="True">
    ...
  </Tab>
 
</Tabs>
  • No labels