05-07-2019
05:41 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
05-07-2019
05:41 PM
Add references to these DLLs (in %ProgramFiles\Autodesk\Inventor 2019\Bin)
Autodesk.iLogic.Core.dll
Autodesk.iLogic.References.dll
Set the reference properties:
Copy Local : False
Specific Version : False
Then in your code:
Imports Autodesk.iLogic.Core Imports Autodesk.iLogic.Interfaces ' ... If (iLogicCentral.Instance IsNot Nothing) Then Dim iLogicAuto As IiLogicAutomation = iLogicCentral.Instance.ExternalApi 'use iLogicAuto ... End If
If the iLogic add-in is loaded, then iLogicCentral.Instance shoudl be available.
Here's the documentation for IiLogicAutomation .

Mike Deck
Software Developer
Autodesk, Inc.