Message 1 of 11
Loading specific version of a derived component via API or Text Commands
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi guys,
for my case I need to load a specific version of a derived component. So far I can refresh the derived components to the newest version via TextCommand:
# Force a deep refresh to update all external references
app.executeTextCommand(u'Commands.Start PLM360DeepRefreshDocumentCommand')
Also I am able to load a specific file version when I open a single file on its own:
# Open a specific file version
adsk.core.Application.get().documents.open(file_version)
I can not find anything in the API Reference Manual and so far I have not found a good documentation on all available text commands.
Thanks for helping me out here or point me in the right direction to get this working.