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: 

ILOGIC CODE TO SWITCH G_ W & G_T

1 REPLY 1
SOLVED
Reply
Message 1 of 2
dclunie
359 Views, 1 Reply

ILOGIC CODE TO SWITCH G_ W & G_T

HI All

 

I am after some code to enable the switching of parameter name's

 

I need the following if i could have some help

 

  1. Change user parameter G_W in paramters dialog box to   G_T
  2. Change user parameter G_T in paramters dialog box to  G_W

basically i want them to swap over and i will be running this as a external rule.

 

Any help will be appreciated

 

 

 

 

 

Dave

1 REPLY 1
Message 2 of 2
VdVeek
in reply to: dclunie

This code can do the job for you:

 

Rob.

'create a temporary variable and assign names to them
SharedVariable("OrigG_W") = Parameter.Param("G_W").Name
SharedVariable("OrigG_T") = Parameter.Param("G_T").Name

'rename the current parameters with a temporary name
Parameter.Param("G_W").Name = "OrigG_W"
Parameter.Param("G_T").Name = "OrigG_T"

'rename the temporary parameter name to the one from the sharedvariable
Parameter.Param("OrigG_W").Name = SharedVariable("OrigG_T")
Parameter.Param("OrigG_T").Name = SharedVariable("OrigG_W")

'remove all the sharedvariable
SharedVariable.RemoveAll()
Autodesk Inventor 2015 Certified Professional & Autodesk Inventor 2012 Certified Professional.

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

Post to forums  

Autodesk Design & Make Report