0
votes

Am writing an outlook add-in in c#. I would like to disable the "Permissions" button in the "Options" tab while composing a new email.

Am currently using Addin express for creating the outlook add-in

1

1 Answers

1
votes

You need to use command tag with the getEnabled attribute defined. For example:

 <?xml version="1.0" encoding="UTF-8"?>
 <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
  <commands>
    <command idMso="Permissions"  getEnabled="OnGetEnabled" />
  </commands>
 </customUI>

You can repurpose built-in ribbon controls, see Temporarily Repurpose Commands on the Office Fluent Ribbon for more information.

The list of built-in control IDs can be found in the following documents: