How I can add some image in to Ribbon group (not a button, or some other element)?
There is properties getImage
of <group>
tag, but it doesn't works. Function 'getimage' is called in my code, but when I am returning some image there is nothing displayed.
Here is code:
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
<ribbon>
<tabs>
<tab idMso="TestTab" insertAfterMso="GroupShow" >
<group id="testGroup" insertAfterMso="GroupShow" centerVertically="true" label="SomeText" getImage="GetImage">
</group>
</tab>
</tabs>
</ribbon>
</customUI>