- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have the desktop connector set up and can import fusion files to inventor through the user interface - great. When I do this manually I get the two options: Reference or Convert.
I can open a .fusionDesign file using the API:
Sub openAndTranslate()
Set invApp = ThisApplication
Dim oDoc As Document
Set oDoc = invApp.Documents.Open("C:\...\part.FusionDesign")
End Sub
This converts the file into an inventor solid model. I'd like to make a referenced/ linked file.
Can I access the import options for this process through the API?
Should I be using: Call ThisApplication.Documents.OpenWithOptions() instead?
Alternatively, can I translate the file using the translation add-in object (ThisApplication.ApplicationAddIns.ItemById(sClientID)) I have the ClientID for the fusion translator, but Can't find any documented options - what settings are available there?
Solved! Go to Solution.