Hello,
my question is how i can hide a specific tool from a ribbon group at runtime. I use the visible property but the tool becomes disabled and not hidden. I can hide the ribbon group but not a tool from the ribbon group.
Thanks
set the Office2007UICompatibility to false
ultraToolbarsManager1.Office2007UICompatibility = false;
then use the visibility property
hope this helps
Here is my code. Tool is still visible
UltraToolbarsManager1.Office2007UICompatibility = False
UltraToolbarsManager1.Ribbon.Tabs(0).Groups(0).Tools(9).CustomizedVisible = Infragistics.Win.DefaultableBoolean.False
Any suggestion ?