Backstage - Checkbox - Control

Achtung: Alle hier vorgestellten Eigenschaften funktionieren ausschließlich in Office 2010.    

 

Das checkbox Element unterscheidet sich durch folgende Attribute von der Ribbon Standard checkbox:

 

 

 

 

 

 

Neu hinzugekommen:

Nicht vorhanden:

 

Die dazugehörige XML Ribbon Datei:

 <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
   <ribbon startFromScratch="false">
       <!-- Ribbon XML -->
   </ribbon>
  <backstage>
    <tab id="btab1" label="Label 1. Tab">
      <firstColumn>
       <group id="myGroup" style="normal" label="Form Button">
         <bottomItems>
                <checkBox id="chk1" label="Checkbox 1" expand="horizontal"/>
                <checkBox id="chk2" label="Checkbox 2" expand="vertical"/>
                <checkBox id="chk3" label="Checkbox 3" expand="neither"
                              screentip="Screentip" supertip="Supertip"/>
        </bottomItems>
      </group>
     </firstColumn>
   </tab>
   <button id="btnFast1" label="Label Backstage Button" imageMso="HappyFace" onAction="OnActionButton"/>
  </backstage>
</customUI>

 

Attribute: Wie die Standard checkbox, bis auf oben beschriebenen Attribute.  

Callbacks: Wie die Standard checkbox, bis auf oben beschriebene Callbacks.

 

Sie finden dieses Beispiel auch in der Beispieldatenbank "Backstage View".


Back