Community
Inventor Forum
Welcome to Autodesk’s Inventor Forums. Share your knowledge, ask questions, and explore popular Inventor topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Multi parameter, iproperty

2 REPLIES 2
Reply
Message 1 of 3
ZachJa
272 Views, 2 Replies

Multi parameter, iproperty

How to set multi parameter, iproperty using ilogic (or smth else)?

I hav eparameters: d1=50, d2=100, d3=5. I need to set a new multi parameter/iproperty that the final value is:

Angle 50x100x5 (suppousedly code should contain smth like: "Angle", "d1", "x", "d2", "x", "d3") but I do not know exactly... ;(

Please Help!

2 REPLIES 2
Message 2 of 3
gerard87
in reply to: ZachJa

parameters:

 

d1=50

d2=100

d3=5

 

make a parameter called "angle" in de parameter window and just make it equal to the code below. Then you will have a parameter called angle and it is calculated with d1*d2*d3.

 

angle=d1*d2*d3

 

or if you mean you want an string value of angle = 50x100x5

 

you can do it like this, make a string parameter and then add this in a ilogic rule.

 

sParameter= "angle" & "x" & d1 & "x" & d2 & "x" & d3

 

 

Message 3 of 3
ZachJa
in reply to: gerard87

Thank You!

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

Post to forums  

Autodesk Design & Make Report