03-18-2019
07:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-18-2019
07:24 AM
I am not using iLogic. I am using C# with the Inventor API. I have no issues connecting a dimension to a work point. The only annotation that I cannot use with a work point through the Inventor API is a balloon. A very simplified version of the code is below:
var objectCollection = this.InventorHost.TransientObjects.CreateObjectCollection();
objectCollection.Add(ivTextOrigin);
objectCollection.Add(geometryIntentofWorkpoint);
this.Balloon = this.Sheet.Balloons.Add(objectCollection);