I have added a custom tab to the ribbon in MSWORD using WordAddin. But after loading i check for some xml inside the document and based on the value in the XML i wish to hide the tab. I dont have any clue how to achieve it.
I was referring to a blog where they asked me to write some RibbonXml but i have added tab using designer but not XML.
So, here is waht i tried:
Initially using VS properties of tab
tab1.Visible= false;//using VS designer
group1.visible=false; //Using VS Designer
ribbon_loadedEvent()///RibbonLoaded Event
{
if(myCondition==true)
tab1.Visible=group1.visible==true;
}
when i do this i dont see the tab in ribbon. Looking for best way to do it.
Thanks in advance.