$ (setq ss (ssget '((0 . "CIRCLE")))) <Selection set: 10> _$ (setq ent (car (entsel " SELECT A CIRCLE: "))) <Entity name: 14b85c8> _$ (setq ent (entget (car (entsel " SELECT A CIRCLE: ")))) ((-1 . <Entity name: 14b85c8>) (0 . "CIRCLE") (330 . <Entity name: 14b84f8>) (5 . "51") (100 . "AcDbEntity") (67 . 0) (410 . "Model") (8 . "0") (100 . "AcDbCircle") (10 5.3227 11.5047 0.0) (40 . 1.66312) (210 0.0 0.0 1.0)) Hi Alls,sometimes in program lisp , like this " (setq ss (ssget '((0 . "CIRCLE")))) " and " (setq ent (car (entsel " SELECT A CIRCLE: "))) ",but I prefer like to " (setq ent (entget (car (entsel " SELECT A CIRCLE: ")))) ". What is different function for first and second option ?