@rgruychev wrote:
How to see information after select objects with (setq sel1 (ssget))
I want to see information selected object and take this information.
If only seeing the information is enough, you can use LIST instead of (ssget), and it will tell you all about the selected object(s).
If by "take this information" you mean you want to extract it to use in some other code or something, that would be by way of (entget) or VLA Properties. You would need to step through the selection and get the information from each object separately. But it's a wide-open question -- what do you want to do with the information, and in what format do you need it? Do you need all information about each object, or only some of it, such as Layers or insertion points or measured lengths of Dimensions or color overrides or ...? Extracted things like those could be put into an AutoLisp list, or written out to an external text file, or put into Text or Mtext in the current drawing, or if numerical, processed with any kind of calculation, or....
Kent Cooper, AIA