Community
Inventor Programming - iLogic, Macros, AddIns & Apprentice
Inventor iLogic, Macros, AddIns & Apprentice Forum. Share your knowledge, ask questions, and explore popular Inventor topics related to programming, creating add-ins, macros, working with the API or creating iLogic tools.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Convert several standard parts to sheet metal parts

2 REPLIES 2
Reply
Message 1 of 3
MariaManuela
581 Views, 2 Replies

Convert several standard parts to sheet metal parts

Hi All,

Its any api thats convert several imported standard parts to sheet metal parts?

I have an imported assembly (from NX) with more than 100 parts and i need convert all of then to sheet metal. 

Any idea how can i speed up the process?

Thank you

 

Manuela

Inventor 2022

Asidek Consultant Specialist
www.asidek.es
2 REPLIES 2
Message 2 of 3

Conversion is easily possible.

The uniform thickness will be the major issue here!

Regards

Regards,

Arthur Knoors

Autodesk Affiliations:

Autodesk Software:Inventor Professional 2024 | Vault Professional 2022 | Autocad Mechanical 2022
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:Drawing List!|Toggle Drawing Sheet!|Workplane Resize!|Drawing View Locker!|Multi Sheet to Mono Sheet!|Drawing Weld Symbols!|Drawing View Label Align!|Open From Balloon!|Model State Lock!
Posts and Ideas:Dimension Component!|Partlist Export!|Derive I-properties!|Vault Prompts Via API!|Vault Handbook/Manual!|Drawing Toggle Sheets!|Vault Defer Update!


! For administrative reasons, please mark a "Solution as solved" when the issue is solved !

Message 3 of 3

You can put this is a loop:

 

 

dim a as partdocument = thisdoc.document

Dim oRegAssy As String = "{E60F81E1-49B3-11D0-93C3-7E0706000000}"
Dim oWeldment As String = "{28EC8354-9024-440F-A8A2-0E0E55D635B0}"
Dim oRegPart As String = "{4D29B490-49B2-11D0-93C3-7E0706000000}"
Dim oSheetMetal As String = "{9C464203-9BAE-11D3-8BAD-0060B0CE6BB4}"

if a.SubType = oRegPart
	MsgBox ("Covert to Sheet Metal Part")
	a.SubType = oSheetMetal
end if

 

Regards,

Arthur Knoors

Autodesk Affiliations:

Autodesk Software:Inventor Professional 2024 | Vault Professional 2022 | Autocad Mechanical 2022
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:Drawing List!|Toggle Drawing Sheet!|Workplane Resize!|Drawing View Locker!|Multi Sheet to Mono Sheet!|Drawing Weld Symbols!|Drawing View Label Align!|Open From Balloon!|Model State Lock!
Posts and Ideas:Dimension Component!|Partlist Export!|Derive I-properties!|Vault Prompts Via API!|Vault Handbook/Manual!|Drawing Toggle Sheets!|Vault Defer Update!


! For administrative reasons, please mark a "Solution as solved" when the issue is solved !

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report