09-29-2019
11:08 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
09-29-2019
11:08 AM
you could try to unload all addins by code. something like this:
foreach (ApplicationAddIn addin in inventorApp.ApplicationAddIns)
{
addin .Deactivate();
addin .LoadAutomatically = false;
addin .StartUpEnabled = false;
}
Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.
Blog: hjalte.nl - github.com