Reputation: 121
I am developing an outlook add-in in Javascript where it is required to position button at the start of the ribbon so that it will be user friendly. By default the buttons are coming at the right which i dont want. I have not found any solution in the documentations also.
Upvotes: 2
Views: 1310
Reputation: 1006
You can use CustomTab
instead of OfficeTab
in the manifest file.
<OfficeApp
<VersionOverrides...
<Hosts>
<Host xsi:type="MailHost">
<DesktopFormFactor>
<ExtensionPoint xsi:type="MessageReadCommandSurface">
<CustomTab id="TabDefault"> <!-- instead of <OfficeTab
You can check an example here
Upvotes: 1