• Creating geometry from scratch using Inventors API

    With just a list of points and a list of indices to link the points together with, we can create any geometry. This example shows how with just these two lists we can then create lines in a 3D sketch, construct a surface from the lines and then patching all the surfaces together into a…

    Creating geometry from scratch using Inventors API
  • Automating Dimension Placement in Inventor Drawings

    When working with multiple variants of a part, creating drawings for each variation can be tedious and repetitive. By cleverly using Inventor’s attribute system in conjunction with custom code, it is possible to fully automate the creation of drawings. In the following example, we will focus on placing dimensions, as these are often the most…

    Automating Dimension Placement in Inventor Drawings
  • Fixing Attribute Helper for Inventor 2024

    What is attribute helper Attribute helper is a tool that comes with Inventor that allows you to visualize, create, and edit attributes on a document. How to install attribute helper What broke Issues with COM Object Handling: After releasing a COM object, it is common practice to set the variable to nothing to prevent any…

    Fixing Attribute Helper for Inventor 2024
  • Placing objects in Autodesk Inventor using the API

    Automating the placement of objects in Autodesk Inventor assemblies can significantly enhance efficiency in design workflows. This guide delves into using the Inventor API to position and orient parts within an assembly, focusing on the manipulation of matrices for precise control. Establishing a Connection to Inventor Begin by obtaining a reference to the active Inventor…

    Placing objects in Autodesk Inventor using the API
  • Automating Parametric Block Placement in AutoCAD

    Introduction Parametric blocks in AutoCAD are powerful tools that enable users to insert blocks with varying dimensions and properties, maintaining consistency and efficiency in design. This guide will walk you through creating a parametric block, placing it via the API, and how this can be leveraged to automate the drawing process. Creating a Parametric Block…

    Automating Parametric Block Placement in AutoCAD
  • Exporting Images of Autodesk Inventor Files

    Introduction Exporting images of Autodesk Inventor files is a valuable process, especially when applying changes to multiple files. It allows for quick verification of outputs without the need to fully open each file, saving significant time and resources. This guide explores two methods for exporting images from Inventor files, their respective advantages and time efficiencies,…

  • Automating data entry into Autodesk Inventor with Excel

    In the world of CAD and design, efficiency and accuracy are paramount. Automation in Autodesk Inventor using Excel data can significantly streamline workflows, particularly in repetitive tasks like data entry. This guide provides a detailed explanation of how to automate the process of inputting data into Inventor using a sample C# or VB code script.…

  • Replacing drawing title block

    Replacing the drawing title block in Autodesk Inventor with a single click. Using Inventors API its possible to replace the block on an old drawing in a fraction of a second, simply by copying the block from the current template and pasting it onto the old drawing. Why replace the title block? When everything is…

  • Connecting Visual Studio to other applications

    When collaborating with other applications and libraries, it’s essential to instruct your Integrated Development Environment (IDE), such as Visual Studio, where to locate the required files. This action enables the IDE to recognize available objects, providing programming support, and allows it to reference the files during code compilation. To include a reference in your project,…

  • iLogic basics

    Lets take a look at some of the iLogic basics by programming a form into a part. What is iLogic iLogic is a system that allows you to incorporate programming logic into your designs. Built upon Visual Basic (VB) it comes pre-loaded with Inventors API along with a simplified Instruction set. The basics iLogic can…