Using the Vault API, I'm able to create custom right-click context menu for files. I don't see any method to be able to create sub-folders of commands within a custom right click menu. Is this possible and how would you do this?
Using the Vault API, I'm able to create custom right-click context menu for files. I don't see any method to be able to create sub-folders of commands within a custom right click menu. Is this possible and how would you do this?
Do you mean a pulldown menu?
If so, look at this sample
Dim testToolsCmdSite As New CommandSite("testToolsContextMenu", "Test Tools") With {
.Location = CommandSiteLocation.FileContextMenu,
.DeployAsPulldownMenu = True '
}
testToolsCmdSite.AddCommand(WebClientOpenCmdItem)
testToolsCmdSite.AddCommand(WebClientCopyCmdItem)
Return Command Sites
Return New List(Of CommandSite) From {testToolsCmdSite}
If not, then you are meaning FolderContextMenu?
Autodesk.Connectivity.Explorer.Extensibility Namespace > CommandSiteLocation Class : FolderContextMenu Field |
Do you mean a pulldown menu?
If so, look at this sample
Dim testToolsCmdSite As New CommandSite("testToolsContextMenu", "Test Tools") With {
.Location = CommandSiteLocation.FileContextMenu,
.DeployAsPulldownMenu = True '
}
testToolsCmdSite.AddCommand(WebClientOpenCmdItem)
testToolsCmdSite.AddCommand(WebClientCopyCmdItem)
Return Command Sites
Return New List(Of CommandSite) From {testToolsCmdSite}
If not, then you are meaning FolderContextMenu?
Autodesk.Connectivity.Explorer.Extensibility Namespace > CommandSiteLocation Class : FolderContextMenu Field |
@fabian.steinruck I want to be able to create a sub-menu of custom commands within the file context menu like "Sub Menu" shown in the image.
@fabian.steinruck I want to be able to create a sub-menu of custom commands within the file context menu like "Sub Menu" shown in the image.
Can't find what you're looking for? Ask the community or share your knowledge.