I made a post on cadtutor and someone posted the lisp below. This will dump everything associated with it. I was able to get the data I needed listed beside Name (RO) =. Look at the attached png and you will be able to see what all it returned. Now I just have to figure out how to filter for this data. Any ideas? Should I call the dumpit function and then filter for what I need in the return or is there a way I can just get the info I need to return?
Code:
;;;===================================================================;
;;; DumpIt ;
;;;-------------------------------------------------------------------;
;;; Dump all methods and properties for selected objects ;
;;;===================================================================;
(defun C:DumpIt ( / ent)
(while (setq ent (entsel))
(vlax-Dump-Object
(vlax-Ename->Vla-Object (car ent))
)
)
(princ)
)