Autodesk.inventor.interop.dll
: Referencing this DLL provides access to the Inventor namespace, which includes classes for parts, assemblies, drawings, and iLogic. Standard File Locations
' Example: Creating a text box on a sketch Dim oSketch As PlanarSketch = oCompDef.Sketches.Add(oWorkPlane) Dim oPoint As Point2d = oTransGeom.CreatePoint2d(0, 0) Dim oTextBox As TextBox = oSketch.TextBoxes.AddFormattedText("Your Text Here", oPoint) Use code with caution. Copied to clipboard B. Select the Profile autodesk.inventor.interop.dll
To start coding, you must first add a reference to this DLL in your development environment (typically Microsoft Visual Studio). : Referencing this DLL provides access to the
: Add the following directive to the top of your code file: C# : using Inventor; VB.NET : Imports Inventor The Inventor Object Model which includes classes for parts