How to get idMso Ribbonname of a selected meeting in outlook calendar?

Dean Marinov 20 Reputation points
2023-04-21T06:52:14.13+00:00

how can i reference this ribbon (idMso) to display my custom add in group there? The ribbon is only visible when I select an appointment item. I want to get the item from the selection with my add in. But I don't know the idMso of this ribbon. It is not TabMeeting or TabCalender.


    <?xml version="1.0" encoding="UTF-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
  <ribbon startFromScratch="0">
    <tabs>
      <!--<tab idMso="TabAddIns" insertBeforeMso="TabMail">-->
      <tab idMso="TabMeeting">
        <group id="GetTermine"
               label="SITBS">
           <toggleButton id="OnActionCallback" label="Get Termine" size="large" onAction="OnActionCallback" />
        </group>
      </tab>
        <tab idMso="TabAppointment">
            <group id="GetTermine1"
   label="SITBS">
                <toggleButton id="OnActionCallback1" label="Get Termine" size="large" onAction="OnActionCallback" />
            </group>
        </tab>
    </tabs>
  </ribbon>
</customUI>

6SvwQ.png Greetings

Microsoft 365 and Office | Development | Other
Outlook | Windows | Classic Outlook for Windows | For business
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.