主页选项卡上的敏感度和分析组的 idMso 是什么?
What are the idMso's for the sensitivity & analysis groups on the home tab?
我需要在自定义应用程序的 EXCEL 主页选项卡上隐藏敏感度和分析组,但我似乎无法在任何地方找到它们的组 idMso,有人知道吗?
您可以在 Office 2016 Help Files: Office Fluent User Interface Control Identifiers. For newer Office version check out the Office Fluent UI Command Identifiers 中找到 built-in 个功能区控件 ID 以获取更多信息。
您也可以使用 Customize Ribbon
对话框(参见 Excel 选项)查找控件 ID,只需将鼠标悬停在对话框 window 中的元素上即可获得带有控件 ID 的弹出窗口。
分析:GroupIdea
敏感度:GroupClassifyLabelProtect
我通过修改文件 > 选项 > 自定义功能区下的功能区找到了 idMso。
我创建了一个新选项卡并将灵敏度和分析组移入其中,然后单击“确定”以保存我的更改。然后我返回到文件 > 选项 > 自定义功能区以导出我的自定义项。打开文件“Excel Customizations.exportedUI”后我发现了这个
<mso:tabs>
<mso:tab idQ="mso:TabHome">
<mso:group idQ="mso:**GroupIdeas**" visible="false"/>
<mso:group idQ="mso:**GroupClassifyLabelProtect**" visible="false"/>
</mso:tab>
<mso:tab id="mso_c1.F0B62B6" label="my ribbon" insertBeforeQ="mso:TabInsert">
<mso:group id="mso_c2.F0B62C5" label="my group" imageMso="ViewDisplayInHighContrast" autoScale="true"/>
<mso:group idQ="mso:**GroupClassifyLabelProtect**"/>
<mso:group idQ="mso:**GroupIdeas**"/>
</mso:tab>
我需要在自定义应用程序的 EXCEL 主页选项卡上隐藏敏感度和分析组,但我似乎无法在任何地方找到它们的组 idMso,有人知道吗?
您可以在 Office 2016 Help Files: Office Fluent User Interface Control Identifiers. For newer Office version check out the Office Fluent UI Command Identifiers 中找到 built-in 个功能区控件 ID 以获取更多信息。
您也可以使用 Customize Ribbon
对话框(参见 Excel 选项)查找控件 ID,只需将鼠标悬停在对话框 window 中的元素上即可获得带有控件 ID 的弹出窗口。
分析:GroupIdea
敏感度:GroupClassifyLabelProtect
我通过修改文件 > 选项 > 自定义功能区下的功能区找到了 idMso。 我创建了一个新选项卡并将灵敏度和分析组移入其中,然后单击“确定”以保存我的更改。然后我返回到文件 > 选项 > 自定义功能区以导出我的自定义项。打开文件“Excel Customizations.exportedUI”后我发现了这个
<mso:tabs>
<mso:tab idQ="mso:TabHome">
<mso:group idQ="mso:**GroupIdeas**" visible="false"/>
<mso:group idQ="mso:**GroupClassifyLabelProtect**" visible="false"/>
</mso:tab>
<mso:tab id="mso_c1.F0B62B6" label="my ribbon" insertBeforeQ="mso:TabInsert">
<mso:group id="mso_c2.F0B62C5" label="my group" imageMso="ViewDisplayInHighContrast" autoScale="true"/>
<mso:group idQ="mso:**GroupClassifyLabelProtect**"/>
<mso:group idQ="mso:**GroupIdeas**"/>
</mso:tab>