Hide the 'Press F1 for more help' in AutoCAD ribbon?

Hide the 'Press F1 for more help' in AutoCAD ribbon?

Anonymous
Not applicable
622 Views
1 Reply
Message 1 of 2

Hide the 'Press F1 for more help' in AutoCAD ribbon?

Anonymous
Not applicable

It can be successfully hidden in using the following codes, can I do the same thing using CUI ?

 

RibbonToolTip ribToolTip1 = new RibbonToolTip();
ribToolTip1.IsHelpEnabled = false;

 

0 Likes
623 Views
1 Reply
Reply (1)
Message 2 of 2

moogalm
Autodesk Support
Autodesk Support

Hi,

 

Can you please try this.

 

tbB stand is ToolBarButton

 

Autodesk.AutoCAD.Customization.ToolTip tp = tbB.MenuMacroReference.macro.ToolTip;

   tp.EnableHelp = false;

0 Likes