Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

How to reset the command rectangle from the sub-commands?

Anonymous

How to reset the command rectangle from the sub-commands?

Anonymous
Not applicable

How to get outside from the sub-commands of rectangle command in Autocad?

When I use the rectangle command and I select a sub-commands such as chamfer of fillet, Autocad memorizes this choice and automatically it will have this sub-command selected for my next use of rectangle. How can I reset the normal use of rectangle? I saw that a possible way is to write '0' for every sub-command the prompt is asking, but I was wondering if there is a faster way to reset the command?

 

Thank you

0 Likes
Reply
Accepted solutions (2)
7,135 Views
2 Replies
Replies (2)

imadHabash
Mentor
Mentor
Accepted solution

>> I saw that a possible way is to write '0' for every sub-command the prompt is asking

That's right … you have to reset the value manually as you did or close the CAD drawing and open it again .

 

Imad Habash

EESignature

ВeekeeCZ
Consultant
Consultant
Accepted solution

You can use a LIST (or menu macro - button?) that will reset all values before you run the command.

 

(defun c:RectangRes () (command-s "_.RECTANG" "_F" 0 "_E" 0 "_T" 0 "_W" 0) (princ))

HERE  is a simple tutorial of how to use a LISP in case you don't know already.