• This forum is the machine-generated translation of www.cad3d.it/forum1 - the Italian design community. Several terms are not translated correctly.

Lamiera

  • Thread starter Thread starter Quoque69
  • Start date Start date

Quoque69

Guest
hello to all
I have the need to identify in a custom property if in a sheet part there are piege
Does anyone have a solution about it?
Thank you in advance
 
Sorry.

It'll be late but I didn't understand your question.

Could you explain yourself better?

maybe with an example or pictures
 
Why write in a generalist section when it is obvious that you are asking for a solution regarding the functionality of a software? Let's just drop the questions by chance so there's gonna be someone else who's going to get them fixed. . .
the question from how it is mail seems to require, for inventor, that in a custom property it is indicated if a sheet element has or has no folds, type check si/no
 
test this ilogic rule, writes the number of folds in an iproperty
written on inv.2023, should be compatible with old versions
Code:
dim odoc as inventor.partdocument = thisdoc.document
if odoc.documentsubtype.documentsubtypeid.tostring() = "{9c464203-9bae-11d3-8bad-0060b0ce6bb4}"  then
    dim osmcompdef as inventor.sheetmetalcomponentdefinition = odoc.componentdefinition
    iproperties.value("custom", "numero_di_pieghe") = osmcompdef.bends.count
else
    messagebox.show("serve una lamiera")
end if
 

Forum statistics

Threads
44,997
Messages
339,767
Members
4
Latest member
ibt

Members online

No members online now.
ciao
Back
Top