Pour ouvrir le UrlPane (pour charger 3DFind.it dans le navigateur), il y a différentes commandes :[106]
Ouvrir le navigateur PSOL par défaut Floating-Window-Browser (Currently CEF) :
Dim manager = ScriptingRoot.GetCommandManager() Dim command = manager.GetCommand(ScriptingRoot, "FloatingBrowserNavigate") command.SetParameter("Url", myUrl) command.Execute()
Ouvrir le navigateur CAD Embedded
Cela ne fonctionne que si la CAO propose une fenêtre de navigation intégrée.
Dim manager = ScriptingRoot.GetCommandManager() Dim command = manager.GetCommand(ScriptingRoot, "BrowserNavigate") command.SetParameter("Url", myUrl) command.Execute()
Ouvrir le navigateur système Windows
Dim manager = ScriptingRoot.GetCommandManager() Dim command = manager.GetCommand(ScriptingRoot, "ExternalBrowserNavigate") command.SetParameter("Url", myUrl) command.Execute()