Visual LISP, AutoLISP and General Customization
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Undo erased

4 REPLIES 4
Reply
Message 1 of 5
Anonymous
108 Views, 4 Replies

Undo erased

Hello,

I'm searching a undo method for a erased method...
Does it exist?

thanks.
4 REPLIES 4
Message 2 of 5
Anonymous
in reply to: Anonymous

maybe "oops" ??
cheers
Steve

Pensile wrote in message
news:f084f07.-1@WebX.maYIadrTaRb...
> Hello,
>
> I'm searching a undo method for a erased method...
> Does it exist?
>
> thanks.
>
>
Message 3 of 5
Anonymous
in reply to: Anonymous

Store your entity's name in a variable, use (entdel) to delete it, and
(entdel) again to restore it:

(defun C:Test (/ myEnt)
(setq myEnt (entlast))
(entdel myEnt)
(getstring "\nSee, I'm gone! : ")
(entdel myEnt)
(princ "\nSee, I'm here!")
(princ)
)

--
R. Robert Bell, MCSE
http://www.acadx.com


"Pensile" wrote in message
news:f084f07.-1@WebX.maYIadrTaRb...
| Hello,
|
| I'm searching a undo method for a erased method...
| Does it exist?
|
| thanks.
|
|
Message 4 of 5
Anonymous
in reply to: Anonymous

Do you know the same command in objectArx That I'm using?


"R. Robert Bell" wrote in message
news:72543438F33283CC9027C5783D7B3D58@in.WebX.maYIadrTaRb...
> Store your entity's name in a variable, use (entdel) to delete it, and
> (entdel) again to restore it:
>
> (defun C:Test (/ myEnt)
> (setq myEnt (entlast))
> (entdel myEnt)
> (getstring "\nSee, I'm gone! : ")
> (entdel myEnt)
> (princ "\nSee, I'm here!")
> (princ)
> )
>
> --
> R. Robert Bell, MCSE
> http://www.acadx.com
>
>
> "Pensile" wrote in message
> news:f084f07.-1@WebX.maYIadrTaRb...
> | Hello,
> |
> | I'm searching a undo method for a erased method...
> | Does it exist?
> |
> | thanks.
> |
> |
>
>
Message 5 of 5
Anonymous
in reply to: Anonymous

Nope.

--
R. Robert Bell, MCSE
http://www.acadx.com


"Pensile" wrote in message
news:E4419DBD1917E3692F729D344FD9B539@in.WebX.maYIadrTaRb...
| Do you know the same command in objectArx That I'm using?

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report

”Boost