Hi, As per the topic, how do I minimze, and maximize the ribbon control - the same effect you get when you double click on the tab strip?
cidolfus,
Set the UltraToolbarsManager.Ribbon.IsMinimized property to either true or false.
~Kim~
Hi, the IsMinimized property is depreciated now. Is there a new method to get the Ribbon status?
Thanks Mike. It works.
You can get the DisplayMode like so:
this.ultraToolbarsManager1.Ribbon.DisplayMode
If it returns TabsOnly, that would be the equivalent of IsMinimized. Any other value would be NOT IsMinimized.
Many Thanks Mike, I have been in the process of using the RibbonDisplayMode but no luck so far. A little help on how to retrieve the current state of Ribbon from the RibbonDisplayMode will be really useful.
Thanks in advance!
The Obsolete warning message tells you the new property to use:
"This property has been deprecated. Use the 'DisplayMode' property."