Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
chrisdrogers
in reply to: AlexFielder

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);