Convert several standard parts to sheet metal parts

Convert several standard parts to sheet metal parts

MariaManuela
Advisor Advisor
848 Views
2 Replies
Message 1 of 3

Convert several standard parts to sheet metal parts

MariaManuela
Advisor
Advisor

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

0 Likes
849 Views
2 Replies
Replies (2)
Message 2 of 3

bradeneuropeArthur
Mentor
Mentor

Conversion is easily possible.

The uniform thickness will be the major issue here!

Regards

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
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:
My 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 !


 


EESignature

Message 3 of 3

bradeneuropeArthur
Mentor
Mentor

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 & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
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:
My 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 !


 


EESignature

0 Likes