Anuncios

The Autodesk Community Forums has a new look. Read more about what's changed on the Community Announcements board.

ВeekeeCZ
en respuesta a: brian.strandberg

It looks like it has set a visibility parameter.

 

You should be able to turn this on with this routine. For select set use a previous selection as you did before.

 

(vl-load-com)

(defun c:ShowInvisible (/ ss i)
  (setq ss (ssget))
  (repeat (setq i (sslength ss))
    (vla-put-visible (vlax-ename->vla-object (ssname ss (setq i (1- i)))) :vlax-true))
  (princ)
)