Disabling small pop up menu (Mini Toolbar?)

Disabling small pop up menu (Mini Toolbar?)

Anonymous
Not applicable
500 Views
1 Reply
Message 1 of 2

Disabling small pop up menu (Mini Toolbar?)

Anonymous
Not applicable

Hello, 

Can someone tell me what these little ribbon style menu bars are called? Also, I would love to disable these. They drive me nuts. It only seems to happen when I'm editing a part in context. 

 

 

 

 

 

 

 Inventor Help.PNG

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

YuhanZhang
Autodesk
Autodesk

Yes, it is MiniToolbar, and when you select something in Inventor usually a contextual mini-tool bar will be displayed, if you don't like to show the contextual mini-tool bar you can in your code clear it in the below event(VBA sample):

 

Private Sub oUserInputEvents_OnContextualMiniToolbar(ByVal SelectedEntities As ObjectsEnumerator, ByVal DisplayedCommands As NameValueMap, ByVal AdditionalInfo As NameValueMap)
    DisplayedCommands.Clear
End Sub

 

 

Hope this helps.



If this solves the problem please click ACCEPT SOLUTION so other people can find it easily.



Rocky Zhang
Inventor API PD
Manufacturing Solutions
Autodesk, Inc.

0 Likes