Message 1 of 16
How to change the ribbon tab displayname
Not applicable
09-16-2017
12:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi All,
I have created a plugin for Navisworks, however, I couldn't change the Ribbon Tab display name, here is my code:
<AddInPlugin(AddInLocation.AddIn,
CanToggle:=True,
LoadForCanExecute:=True,
CallCanExecute:=CallCanExecute.Always,
Icon:="Resources\\icon",
LargeIcon:="Resources\\logo",
Shortcut:="Ctrl+Shift+O",
ShortcutWindowTypes:="")>
<PluginAttribute("navs.ltf_pw_nw_open__",
"LTFD",
ToolTip:="Open a document ",
DisplayName:="Open")>
Public Class ltf_nw_open__
Inherits AddInPlugin
Public Overrides Function Execute(ByVal ParamArray parameters As String()) As Integer
End Function
End Class
and here is the title bar
Thank you.