Jump to content

Recommended Posts

Posted

Can anyone tell me if it is possible to combine a series of "command" functions within a LISP routine, such that the whole sequence can be undone at once using the UNDO command, rather than having to undo repeatedly until each and every command within the LISP routine has been undone.

Posted

Two ways:

 

(command "_.undo" "_begin")

<code>

(command" "_.undo" "_end")

 

Or with VL:

 

(setq doc (vla-get-ActiveDocument (vlax-get-acad-object)))
(vla-startUndoMark doc)

<code>

(vla-EndUndoMark doc)

 

Lee

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...