Continue to Site

Welcome to MCAD Central

Join our MCAD Central community forums, the largest resource for MCAD (Mechanical Computer-Aided Design) professionals, including files, forums, jobs, articles, calendar, and more.

How to combine relations syntax

mr_amby

New member
Hi

How do you combine two parametres with a x in between the two parametres? What kind of syntax do I have to use for this?

I have this but it does not Work: Local_description=WIDTH "x" LENGTH

Thanks.
 
You need to convert number in to string first using 'itos'
e.g.
WIDTH1 = itos(WIDTH)
LENGTH1 = itos(LENGTH)
Local_description= WIDTH1 +" X " + LENGTH1
 

Sponsor

Articles From 3DCAD World

Back
Top