Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.