Inventor 2023 Ribbon Panel

Inventor 2023 Ribbon Panel

JoAntt
Enthusiast Enthusiast
585 Views
2 Replies
Message 1 of 3

Inventor 2023 Ribbon Panel

JoAntt
Enthusiast
Enthusiast

Inventor 2023

Ribbon panel "id_GetStarted" dosnt exist anymore.

Is the changes that are made posted somwhere?

 

 

/johan

 

0 Likes
Accepted solutions (2)
586 Views
2 Replies
Replies (2)
Message 2 of 3

WCrihfield
Mentor
Mentor
Accepted solution

Hi @JoAntt.  Here are a few links for you.

What's New in Inventor 2023 

Inventor 2023 Release Notes 

Overview 

Wesley Crihfield

EESignature

(Not an Autodesk Employee)

0 Likes
Message 3 of 3

JelteDeJong
Mentor
Mentor
Accepted solution

The following rule will write all ribbon panel names to your log. this should work on all inventor versions. You can use it to see the differences yourself.

 

For Each ribbon As Ribbon In ThisApplication.UserInterfaceManager.Ribbons
    Logger.Info(Ribbon.InternalName)
    For Each ribbonTab As RibbonTab In Ribbon.RibbonTabs
        Logger.Info(String.Format("     {0} ({1})",
                                  RibbonTab.DisplayName, RibbonTab.InternalName))
        For Each ribbonPanel As RibbonPanel In RibbonTab.RibbonPanels
            Logger.Info(String.Format("          {0} ({1})",
                                      RibbonPanel.DisplayName, RibbonPanel.InternalName))

            ' -- Uncomment the following lines if you also want to see the commands --
            'For Each commandControl As CommandControl In RibbonPanel.CommandControls
            '    Logger.Info(String.Format("               {0} ({1})",
            '                              CommandControl.DisplayName, CommandControl.InternalName))
            'Next

        Next
    Next
Next

Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.

EESignature


Blog: hjalte.nl - github.com

0 Likes