1 Answers
A:
Inventor allows you to import 2D AutoCAD geometry into a sketch within an .idw file. This can be done manually or automated via VBA/iLogic.
Manual Steps (for reference)
This converts AutoCAD geometry into Inventor sketch entities.
Example VBA Snippet (Conceptual)
Sub InsertDWGIntoSketch()
Dim oDoc As DrawingDocument
Set oDoc = ThisApplication.ActiveDocument
Dim oSheet As Sheet
Set oSheet = oDoc.ActiveSheet
' Start a new sketch
Dim oSketch As DrawingSketch
Set oSketch = oSheet.Sketches.Add
' Simulate command to insert DWG
ThisApplication.CommandManager.ControlDefinitions.Item("DrawingInsertDWGCmd").Execute
End Sub
Autodesk AutoCAD
AutodeskDisclaimer
Techjockey’s software industry experts offer advice for educational and informational purposes only. A category or product query or issue posted, created, or compiled by Techjockey is not meant to replace your independent judgment.
20,000+ Software Listed
Best
Price Guaranteed
Free Expert
Consultation
2M+
Happy Customers