;; | ----------------------------------------------------------------------------- ;; | SS_SeleType ;; | ----------------------------------------------------------------------------- ;; | Function : Select all entities with of specified entity type ;; | Argument : [Type] - The antity type ;; | Return : Selection set meeting the selection criterion. ;; | Returns nil if none is found. ;; | e-mail : rakesh.rao@4d-technologies.com ;; | Web : www.4d-technologies.com ;; | ----------------------------------------------------------------------------- (defun SS_SeleType (cType) (ssget "_X" (list (cons 0 ctype))) )