Resources Locations

Resources Locations

Anonymous
Not applicable
702 Views
2 Replies
Message 1 of 3

Resources Locations

Anonymous
Not applicable

Please help, I'm pulling my hair out over what I thought was a simple thing. I had a link to a list of variables for making text and I cant find it, where the hell is a list of variables for text?

 

for example, to set the text to Arial you add:

 

cons 7 "Arial"

 

Whats the rest?

0 Likes
Accepted solutions (1)
703 Views
2 Replies
Replies (2)
Message 2 of 3

Anonymous
Not applicable
Accepted solution
Message 3 of 3

cadffm
Consultant
Consultant

Thats not a variable, thats the DXF code for Textstyle for some objects.

 

AutoLisp objectmodel is near to the DXF objectmodel,

you will finde the DXF Reference in your Help [F1]

 

And you can check the entity list of existing object by using ENTGET

(setq entitylist (entget (setq entname (car(entsel)))))

and you can compare the entity lists of two objects.. often helpful

Sebastian