Backstage View - radioGroup - getItemID

 

Sets the ID for a specific item.


Sample Ribbon XML file:

<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>
             <radioGroup id="rGrp" label="Label RadioGroup" getItemCount="GetItemCount"
                        getItemID="GetItemID" getItemLabel="GetItemLabel" onAction="OnActionRadioGroup"
                        getSelectedItemIndex="GetSelectedItemIndex">
             </radioGroup>
             <radioGroup id="rGrp1" label="Label RadioGroup" getItemCount="GetItemCount"
                        getItemID="GetItemID" getItemLabel="GetItemLabel" onAction="OnActionRadioGroup"
                        getSelectedItemIndex="GetSelectedItemIndex">
             </radioGroup>
        </bottomItems>
      </group>
     </firstColumn>
   </tab>
   <button id="btnFast1" label="Label Backstage Button" imageMso="HappyFace" onAction="OnActionButton"/>
  </backstage>
</customUI>

Function to be copied to a standard module:

Sub GetItemID(control As IRibbonControl, index As Integer, ByRef itemID)
    Select Case control.Id
        Case "rGrp"
            itemID = Format(index, "00") & "AAA"
        Case "rGrp1"
            itemID = Format(index, "00") & "BBB"
    End Select
End Sub


You can find this sample in download: BackstageView 1




Zurück