I am developing a Word-Addin using VSTO which is compatible with Word 2013 and later versions.
I have the Ribbon.xml
and the Ribbon.cs
files and I have implemented the Word-addin label in title case. I am only having one Ribbon.xml file.
<?xml version="1.0" encoding="UTF-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load" >
<ribbon>
<tabs>
<tab id ="Ribbon1" label="Test" >
<group id="Document" getLabel="Document" imageMso="ControlsGallery">
<!-- Some content here -->
</group>
</tab>
</tabs>
</ribbon>
</customUI>
The final product of my project is an .exe file, where we can install the Word-Addin (inner operations done within a set of dll files) in the customer machine.
When Word has its default ribbons' labels in upper case, how should we modify the Ribbon.xml to show the ribbon name in upper case ('TEST') along with other word ribbons. Currently mine is displaying like below (captured from Word 2013).
Also how should we identify what is the case used in the Word default ribbon bar titles.
I have searched the web, but found no supporting article. Please help me with this.
Thank you in advance.