Programmaticaly禁用Outlook撰写窗口功能区

时间:2017-04-24 04:32:04

标签: outlook vsto outlook-addin addin-express

我在c#中编写了一个outlook插件。我想禁用"权限" "选项"中的按钮撰写新电子邮件时的标签。

我目前正在使用Addin express来创建Outlook插件

1 个答案:

答案 0 :(得分:1)

您需要使用command标记并定义getEnabled属性。例如:

 <?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>

您可以重新调整内置功能区控件的使用方法,有关详细信息,请参阅Temporarily Repurpose Commands on the Office Fluent Ribbon

内置控件ID列表可在以下文档中找到: