How can I run the code with command GCVERTICAL?

How can I run the code with command GCVERTICAL?

穎
Explorer Explorer
293 Views
4 Replies
Message 1 of 5

How can I run the code with command GCVERTICAL?

穎
Explorer
Explorer

Have anyone know this code do not work? Thanks

(setq En (entsel)) (Command "._GCVERTICAL" En)

 

This code can work:
(Command "._GCVERTICAL" (setq En (entsel)))

0 Likes
294 Views
4 Replies
Replies (4)
Message 2 of 5

ВeekeeCZ
Consultant
Consultant

Try just a point.

(setq e (entsel)) (command "_.gcvertical" (cadr e))

0 Likes
Message 3 of 5

穎
Explorer
Explorer

It also can not work. 

🤔

0 Likes
Message 4 of 5

ВeekeeCZ
Consultant
Consultant

It does work for me. 

Or you can try to use the osnaps... (osnap (cadr e) "_nea")

0 Likes
Message 5 of 5

calderg1000
Mentor
Mentor

Regards @穎 

Try this code

 

;;It works for both options.
(Command "._GCVERTICAL" "_pause" )

 

 

 


Carlos Calderon G
EESignature
>Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.

0 Likes