Message 1 of 3
Getting Inventor application object from dll called from iLogic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
How do I get access to the document object (or the Inventor application object) from a dll called from iLogic? Do I have to pass it from the iLogic rule to my dll?
In the dll I can get the Vault connection like this:
C#:
Autodesk.DataManagement.Client.Framework.Vault.Currency.Connections.Connection vltConn;
vltConn = Connectivity.InventorAddin.EdmAddin.EdmSecurity.Instance.VaultConnection;
VB.NET:
Dim vltConn as Autodesk.DataManagement.Client.Framework.Vault.Currency.Connections.Connection
vltConn = Connectivity.InventorAddin.EdmAddin.EdmSecurity.Instance.VaultConnection
- can I get the Inventor application object in some similar way?