visibility of objects
visibility of objects
(OP)
i read some where that there is a setting for objects in which you can turn on and off via lsp or vba any one have any ideas thanks
if everyone helps everybody the world will be a better place





RE: visibility of objects
RE: visibility of objects
www.resourcecad.com and goto the downloads section
RE: visibility of objects
(defun MAKE_INVISIBLE()
(vl-load-com)
(setq ENT (car (entsel)))
(setq VLENT (vlax-ename->vla-object ENT))
(vla-put-visible VLENT :vlax-false)
)
"Everybody is ignorant, only on different subjects." — Will Rogers
RE: visibility of objects
if everyone helps everybody the world will be a better place
RE: visibility of objects
RE: visibility of objects
if everyone helps everybody the world will be a better place