Tag: inventor
-
.NET Compatibility for Autodesk Inventor 2027 Add-ins: What Developers Need to Know
With every major release of Autodesk Inventor, developers and automation engineers naturally evaluate whether their existing add-ins will continue to work or require migration. One of the most common questions surrounding Autodesk Inventor 2027 is related to .NET compatibility and potential binary breaking changes. This article clarifies compatibility expectations for Inventor 2027 add-ins and provides…
-
Autodesk Inventor 2027: Improved Dependency Isolation for .NET Add-ins
Managing dependencies has always been one of the key challenges in developing .NET add-ins for Autodesk Inventor. As ecosystems grow and multiple add-ins coexist within the same environment, conflicts often arise when different add-ins depend on different versions of the same third-party libraries. Autodesk Inventor 2027 introduces a powerful enhancement to address this challenge through…
-
My First Inventor Add-in — Overview
“My First Inventor Add-in” is a self-paced tutorial designed as a comprehensive learning path for users who already work with Autodesk Inventor but are new to programming. While the principles covered in this guide apply broadly to modern versions of Inventor, Autodesk Inventor 2026 is used as the working example to demonstrate how to create…
-
Lesson 4 – Managing Groups: Removing Components and Deleting Group
In this lesson, you will extend the functionality created in Lesson 3 by adding group maintenance commands. Specifically, you will learn how to: Lesson Objective By the end of this lesson, you will be able to: • Remove selected components from a group• Delete an entire group from an assembly• Work safely with Inventor AttributeSets•…
-
Lesson 3 – Grouping Components and Controlling Visibility with Attributes
In this lesson, you will extend the Add-In created in Lesson 2 by introducing component grouping using attributes and adding a second command that toggles the visibility of all components in a group. This lesson demonstrates how to: Lesson Objective In this lesson, you will learn how to: • Store custom metadata on ComponentOccurrence objects…
-
Lesson 2 – Adding a Button and Hiding a Component
In this lesson, it expands on the basic Add-In created in Lesson 1 by introducing user interaction. You will add a Ribbon button that hides selected component occurrences in an assembly. The Add-In operates only in the Assembly Document environment and demonstrates safe handling of user selections. Lesson Objective In this lesson, you will learn…
-
Lesson 1: Creating Your First Inventor Add-In
Overview In this lesson, you will create an Autodesk Inventor add-in that loads successfully and connects to Inventor through the ApplicationAddInServer interface. By the end of this lesson, you will: What Is an Inventor Add-In? An Inventor add-in is: Unlike macros, add-ins: Many professional solutions distributed through the Autodesk App Store are implemented as add-ins.…
-
What’s New in the Autodesk Inventor 2026 API – Feature Highlights and Enhancements
Autodesk Inventor 2026 brings powerful new API capabilities that enhance automation, customization, and flexibility across modeling, documentation, and configuration workflows. Below is a curated index of recent blog posts that dive into these new API features with practical examples and technical guidance. 🔢 Index of Articles 1. Managing Model States Edit Scope in Autodesk Inventor…
-
Managing Model States Edit Scope in Autodesk Inventor 2026 API
by Chandra shekar Gopal, When working with Model States in Autodesk Inventor, controlling which states are actively being edited becomes crucial—especially when automating complex design workflows. The Inventor API provides powerful control through two key properties: This article explains how to use these features to manage model states programmatically in Autodesk Inventor 2026, which introduces…
-
Visual Studioを利用してInventor iLogicのデバッグ実行する方法
ご存知のように、InventorのiLogicエディタには、ステップ実行や変数の値を参照する等のデバッグを行うための機能が無いため、実行中のTraceログを出力するなどの間接的な方法以外にはiLogicをデバッグを行うことが出来ません。 このため、新規にiLogicを作成する場合や、運用中に発生したエラーの調査を行う場合等、どこで何が起きているのかの現象の確認、原因および修正方法の調査を行うのに、苦慮することがあるかと思います。 今回の記事では、Inventor iLogicをVisual Studioでデバッグ実行する方法をご紹介します。 前提条件: Inventor 2019以降 (Inventor 2018ではデバッグ実行をすることは出来ません) Visual Studio 2017 または 2019 (Community、 Professional 、または Enterprise エディション。Visual Studio Codeは対象外) 設定方法: この記事では、Visual Studio 2019 Professionalでの設定を例に説明をします(Visual Studio 2017でも多少のGUIの違いはありますが設定内容は同じです)。 1.Visual Studioを起動し、Visual Basic のクラスライブラリ(.NET Framework) プロジェクトを新規作成 2.メニューから「デバッグ」- 「ウィンドウ」-「例外設定」を選択し、例外設定パネルで、「Common Language Runtime Exceptions」の設定をOnに変更 3.メニューから「デバッグ」- 「オプション」を選択してオプションウィンドウを起動し以下の設定を変更 オプションウィンドウの「デバッグ」-「全般」配下の「元のバージョンと完全に一致するソースファイルを必要とする」オプションのチェックを外す。 …

You must be logged in to post a comment.