I've created a Microsoft Word Office 2010 VSTO add-in and am looking for a way to programmatically remove a specific group from the ribbon when the add-in launches. At a later stage users should be able to re-add this group using Customize Ribbon functionality in Word:
There is functionality to toggle the visibility of a group but if I do this attempts to make the group visible again using Customize Ribbon fail:
groupName.Visible = false;
I've searched quite a bit on this topic but can't find anything helpful with regards to removing ribbon groups, any advice would be great!