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: 

control Corner Seam

3 REPLIES 3
Reply
Message 1 of 4
j.vanderheijden
464 Views, 3 Replies

control Corner Seam

I want to control the Corner Seam in the sheet metal styles but it seems not possible to do that.

Now i wondering if this can controled in iLogic.

I want to control the settings which you can make in the Corner Seam.

In the attachment are two drawings white different corners, overlap.

Those i want to control in different sheet metal styles.

Can somebody help me.

 

Mvg Jos

Your drawings are only as good as the symbols that complete them...
3 REPLIES 3
Message 2 of 4

Hi,

 

Inventor API provides the object CornerDefinition to work with Corner feature. There are some properties with CornerDefinition on Corner Seam. Please refer to API help reference. 

 

iLogic can access Inventor API by the advanced API such as ThisApplication. I have not tried, but I think after you access Inventor API, you could get the Corner feature, next CornerDefinition, and configure the properties of Corner Seam.

Message 3 of 4

I found a way to control it.

I linked a parameter to the Face/edge distance.

That parameter, overlap,  a use in Ilogic.

 

currentStyle = SheetMetal.GetActiveStyle()

If currentStyle = "Inteco_0.7" Then
   Parameter("overlap") = 0.8 ul
Else If currentStyle = "Kemi" Then
    Parameter("overlap") = 0.0 ul
End If

InventorVb.DocumentUpdate()

 

 

Thanks for your reactionSmiley Happy

 

Mvg Jos

Your drawings are only as good as the symbols that complete them...
Message 4 of 4

Hi,

 

Well done! This is a smart solution! Smiley Happy

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

Post to forums  

Autodesk Design & Make Report