lisp

lisp

lamvieira
Enthusiast Enthusiast
592 Views
2 Replies
Message 1 of 3

lisp

lamvieira
Enthusiast
Enthusiast

(command "layer" "m" "TG" "")  Queria saber o significao da variaveis M TG. por favor

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

hosneyalaa
Advisor
Advisor
Accepted solution
Enter an option [?/Make/Set/New/Rename/ON/OFF/Color/Ltype/LWeight/TRansparency/MATerial/Plot/Freeze/Thaw/LOck/Unlock/stAte/Description/rEconcile/Xref]

/Make/
"M" Make new layer

"TG" name new layer
0 Likes
Message 3 of 3

ВeekeeCZ
Consultant
Consultant

@lamvieira wrote:

(command "layer" "m" "TG" "")  Queria saber o significao da variaveis M TG. por favor


 

If you're using autocad of some other language version than english, you need to add "_" before it.

(command "_layer" "_m" "TG" "")

or better yet spell it out.

(command "_layer" "_make" "TG" "")

0 Likes